What is the different between GET and POST in HTML Form

1 Answer

0 votes
$_GET is a global array (array(key => value, key2 => value2, ...)) of variables 
passed to the current script via URL parameters.

$_POST is a global array (array(key => value, key2 => value2, ...)) of variables 
passed to the current script via the HTTP POST method.

 



answered Nov 21, 2015 by avibootz
...