| The pattern in filename.php?variable_name=value&variable_name_2=v alue2&...
In PHP you can access the values through the global $_GET array. $_GET includes all variables passed in the URL as shown above. From the example above, $_GET['variable_name'] would be equal to "value" and $_GET['variable_name_2'] would be equal to "value2". |