Quote:
Originally Posted by Cherrykao
i didn't realize people were so rude
|
lol ... just lol
You'll want to make a gani script, and use params or attrs so it shows the zoom for everybody. To make a gani script, edit the gani file in a text editor, and at the bottom (or so) add
PHP Code:
SCRIPT
// Code goes here
SCRIPTEND
and if you want to use params, you need to use that in an if (created) and then call something. Otherwise, it will reset the params. For example,
PHP Code:
SCRIPT
if ( created )
{
doStart( params );
}
function doStart( NULL )
{
echo( params );
}
SCRIPTEND