You really don't need to use $_REQUEST instead of $_GET or $_POST. The $_REQUEST variable actually contains both the $_GET and $_POST within it. You can just carry on using $GET and $_POST rather than $_REQUEST.
It's no problem. And yes, using $_GET and $_POST is a good habit to get into as others who might eventually read your code would understand where the "data" was coming from.