On Thu, 30 Sep 2004 14:33:30 -0400, Kevin Coyner <[EMAIL PROTECTED]> wrote: > What does work is: > > $cid = $_GET($varname); > > But that is only for when a single variable is passed, not when a bunch > of them get passed and need to be put into an array.
$_GET is already an array, why reassign to another array at all? Unless you need to mangle the values, I'd just use the $_GET array as it is. Meanwhile, you might want to look at print_r($_GET) to see if it actually contains what you think it's supposed to. -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http://destiney.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php