Paul Novitski wrote: > At 6/19/2008 05:55 PM, VamVan wrote: >> How to create an associative array of this kind in PHP? >> >> return array( >> 12345 => array( >> 'mail' => 'asdf@xxxxxxxx', >> 'companyName' => 'Asdf Inc.', >> ), >> 54321 => array( >> 'mail' => 'asdf@xxxxxxxx', >> 'companyName' => 'Asdfu Corp.', >> ), >> ); > > > This is the right PHP syntax, except that you've got an extraneous comma > before the closing parenthesis of each array that's going to throw a > parse error. Actually that's allowed (and by design too) :) -- Postgresql & php tutorials http://www.designmagick.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php