What is the best way that I can pass an array as a url parameter? I was thinking if this is possible:
$aValues = array(); $url = \'http://www.example.com?a
in the received page you can use:
parse_str($str, $array); var_dump($array);