I also like to never use the $_REQUEST variable. Since it's a merge of $_COOKIE, $_GET and $_POST, variables can easily be overwritten. I prefer to use the correct variable from the start.
I your case, that is $_POST.
Also, as a naming convention, don't use <?PHP, but <?php.