Suppose I have a form which posts its fields like amount to say payment.php?amount=100
Instead of using
$amount=$_POST['amount'];
What if I use:
$amount=$_REQUEST['amount'];
My question is, when $_REQUEST
method can be used for retrieving get as well as post variables, does the post variable sent by the form get overridden by the get variable or not?