The global variable is $_POST, not _POST. Also it might be that you are sending the data via GET method, in which case you need to use the $_GET global variable.
If you want to check for either POST or GET method, you can use the global variable $_REQUEST. Sample code bellow: