$_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.