I created a yahtzee game in flash a few years back, and use a php script and sql to pass the scores back and forth.
Everything worked fine for those few years, but now I have noticed that the script has not worked for a while not. I thought at first something changed in flash. But I have narrowed it down to the php script.
I have three sections in the script:
<?php
if ($action=="html")
code
if ($action=="get")
code
if ($action=="add")
code
I pass the variable in the html call to the php script:
http://www. soandso.com/scores.php?action=get, or add, depending on what I wanted done.
If I eliminate the if code, and just call the code, the sql code works fine.
Did something change in php to make these if calls not work?
Thanks in advance for any advice,
Phil