Hey all
Does anyone know why when I try and receive co-ordinates from a database
using PHP4, it sends the name of the variable rather than the variable
values.
print "&myx=" . $myx;
print "&myy=" . $myy;
The info that gets sent to flash is displayed as, i named to text fields
with myx, and myy
myx displays . $myx;
myy displays . $myy;
The values should be
for myx 700
for myy 300
when I view the php file on the internet
&myx=700&myy=300
This has got me totally confused.
Many thanks in advance
Richard Poole