PHP Code:
$type=$GET['type'];
foreach(
$type as $key => $value){ $type_string =  type_string."&type[$key]=".$value; } 
I have managed to reconstruct my URL string (?type[0]=x&type[1]=y&type[2]=z) and place it into my SQL server.

If I call on the string how can I use its content without placing it back in the URL?