PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I need to pass some info from a Flash program to a PHP script and then to a database. How do i ensure that (for example) a user can't simply write "Program.php?score=1000" at the end of the path in the browser to cheat instead of going through the flash program?
add a hash to it, where you combine a secret code with the data you're sending... use post to send it, if you can, with the url being you're url parameterized stuff..