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!
$_REQUEST works because you are accessing 'Doit' from the URL so it's being passed using get not post. Instead of $_REQUEST['Doit'] it would therefore be better to use $_GET['Doit']. 'Doit' would be passed using post if you did something like the following: