[PHP] add item to end of (multidimensional) array

2004-10-15 Thread Arnold
Hi, How can i add new items to an array without using an index. Normally (single dimension) you can do: Arr[]=x and this item is added to the array, but what if i have subitems like: Arr[]['name']=arnold; Arr[]['address']=street. This last example doesnt work and i think there will be an

Re: [PHP] add item to end of (multidimensional) array

2004-10-15 Thread Robert Cummings
On Fri, 2004-10-15 at 08:34, Arnold wrote: Hi, How can i add new items to an array without using an index. Normally (single dimension) you can do: Arr[]=x and this item is added to the array, but what if i have subitems like: Arr[]['name']=arnold; Arr[]['address']=street. This last

Re: [PHP] add item to end of (multidimensional) array

2004-10-15 Thread Chris Dowell
try $Arr[] = array('name' = 'arnold', 'address' = 'street'); Arnold wrote: Hi, How can i add new items to an array without using an index. Normally (single dimension) you can do: Arr[]=x and this item is added to the array, but what if i have subitems like: Arr[]['name']=arnold;

Re: [PHP] add item to end of (multidimensional) array

2004-10-15 Thread Chris Boget
You mean like this... $sub = array ( 'name' = 'Ahnold', 'address' = '123 Someplace Nice', ); $bigArray[] = $sub; Something else that will work is the following: $arrPt = $Arr[]; $arrPt['name'] = 'bob'; $arrPt['address'] = 'wherever'; thnx, Chris --

Re: [PHP] add item to end of (multidimensional) array

2004-10-15 Thread ApexEleven
How come you guys always go for the simplest answer? why not do something like, $num = count($arrPt); $arrPt[$num]['name'] = Figntin' Bob; $arrPt[$num]['address'] = Under the Broad Street Bridge; Live a little... -Jasper On Fri, 15 Oct 2004 09:07:43 -0500, Chris Boget [EMAIL PROTECTED] wrote: