I'm having a problem passing more then one var thru the URL..
My URL is Test.php?PROCESS=1&PROCESS=2&PROCESS=5
<?PHP
if (isset($_GET["PROCESS"])){
$process = $_GET["PROCESS"];
echo $process[0];
echo $process[1];
}
?>
My code is only getting the last PROCESS.. I thought calling $_GET['PROCESS'] would return an array of all the PROCESS being sent but that doesn't seem the case.. As I said it's only getting the last one..