A Flash Developer Resource Site

Results 1 to 19 of 19

Thread: [almost done] Pharaoh's Eye

Hybrid View

  1. #1
    Senior Member
    Join Date
    Feb 2004
    Posts
    782
    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:

    Code:
    $score=$_POST['score'];
    
    or
    
    $score=$_SERVER['score'];
    Instead of using $score direction without setting it equal to a form variable first.

    I don't send my scores directly to mysql via flash, I call a php file on ym server to actually input my scores.
    Last edited by Archbob; 04-04-2006 at 06:39 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center