From: "Sukanto Kho" <[EMAIL PROTECTED]>

> My problem is I want to pass var array with $_get..
> 
> eg : $a=array()  then i pass to other pages www.main.com?b=$a
>        after that echo $b
>        the result is "array"... just that...

$safe = urlencode(serialize($a));

$url = "http://www.main.com/?b=$safe";;

---John Holmes...

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to