question, the default in php is now to have register_globals set to off but then posting through forms does not work, is there some way that i do not know about to submit data other then forms? I fell a bit confused, i switched register_globals back to on so my forms would work but would like to do things the best way possible. thank you
open a session an then register session variables?
suppose you have this in the form <input type="button" name="submit" value="Enter">
In order to access this var register_global off, do this
$GET['submit'] for a get form $POST['submit'] for a post form $_REQUEST['submit'] for either get or post