PDA

View Full Version : Flash -> vars -> PHP !



Drunken
May 28th, 2003, 12:00 PM
Hy!

I am in trouble with flash + php.

I want to past vars from flash to PHP...I have an input box, with var: name

then when the button submit is pressed, I have this code:

on (release) {

getURL ("http://localhost/vars.php", "_blank", "POST");

}


and on php script I have this:



<?php


$name = $_POST['name'];
print ("Your name is || $name ||");
?>




but the name isn't past to the script :(

any help please, thks

eyezberg
May 28th, 2003, 03:18 PM
print "Your name is ||" .$name ."||";