+ 1
Is there any different between using $_REQUEST['var_name'] and $_POST['var_name'] in php form handling.?
2 Réponses
+ 5
$_request[] does what both $_get[] and $_post[] does.
0
So, can we send same name with different values through POST and GET ?