Really the only difference with register globals off is that you have to define $_POST, $_GET, and $_SERVER variables on the server.
So in the php file your sending to you have to:
Instead of using $score direction without setting it equal to a form variable first.Code:$score=$_POST['score']; or $score=$_SERVER['score'];
I don't send my scores directly to mysql via flash, I call a php file on ym server to actually input my scores.




Reply With Quote