Is there an easy way of passing an array with the URL (ie NOT using "?array[1]=box&array[2]=bighairymonster")? I tried "?array=$array" where $array is an array (duh) but this didn't seem to work. Any ideas?
Domhnall
Pass it as a string, use serialize():
$string = urlencode(serialize($array));
To get it back, simply use unserialize().