This seems like a bit of a silly question, but I couldn't find a definitive answer either way and am not sure where to look.
I'm working on a new PHP code base, and have used $_GET
in some places. However the person reviewing my code has stated that:
$_GET
and$_POST
will be phased out at some point in favour of$_REQUEST
I'm new to PHP, but this seems dubious as being able to know how URL variables were set is important for security. Is this statement correct?