I recently followed this tutorial on how to pass a variable from a Flash file to a php file. Then sending it back from the php to another Flash file.
My problem is that I need to pass more than one variable. After reading a bunch of posts, I can see this has got to be an easy question for quite a few of you.
Now the method they were sending the variables back to flash was by a link like this;
<a href="end.php?value=<?php echo $value; ?>">Click Here</a>
Now I tried this;
<a href="end.php?value=<?php echo $value; ?>?value2=<?php echo $value2; ?>">Click Here</a>
..and it didnt work. After that I looked for some tutorials to help me but none of them covered sending two variables.
Like I said, this has to be an easy one, so please help me. Pleeeeheheheeeaase.
Thanks, bye.