> You mean like this... > $sub = array > ( > 'name' => 'Ahhhhhnold', > 'address' => '123 Someplace Nice', > ); > > $bigArray[] = $sub;
Something else that will work is the following: $arrPt =& $Arr[]; $arrPt['name'] = 'bob'; $arrPt['address'] = 'wherever'; thnx, Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php