I am trying to read the parameters sent through setani from withing the gani's script.
PHP Code:
setani("ganiname", param1, param2);
// Within the gani:
SCRIPT
function onCreated() {
// These give no results
echo( "[" @ params[0] @ "][" @ params[1] @ "][" @ attr[0] @ "][" @ attr[1] @ "]");
}
SCRIPTEND
Or is there possibly another another way to send variables to the gani?