Dear Sir, using AS2, I send data from flash to PHP. The data can be echoed in php. But when I use the same variable in query. PHP does not recognize the variable. for instance,
//$names is received safely from flash
//$namer can be echoed and shows that data has been received from flash
$namer=$_REQUEST['$names'];
$query=mysql_query("Select * FROM phone WHERE name='$namer'") or die(mysql_error());
//here $namer shows up blank and query is not run.
PLEASE HELP ME. I'LL BE THANKFUL.
I need help Adam, with this code i am trying to move a object with multi data in flash, here the code.
myData = new LoadVars()
myData.load("x.php");
myData.ref = this
myData.onLoad = function(){
for(var i = 0; i< this.x; i++){
player._x = this.ref["x"][+i];
}
}
please help.
d8arted18