Im trying to send variables from a .swf file to a php script on my local server using the following line:
'getURL ("http://localhost/croptest/test4.php", "_self", "POST");'
The variable that I want to process is called 'map' in the .swf file, and therefore my php page looks like:
<?php
print($map);
?>
As simple as that. But I keep getting the following error
'PHP Warning: Undefined variable: map in D:\Inetpub\wwwroot\croptest\test4.php on line 2'
can anyone help?