Re: [PHP] Add to array problem

2005-05-16 Thread Arshavir Grigorian
mayo wrote: I'm having a little problem adding to an array. Each time I add to an array it wipes what was previously added. I'm using array_push(). $items=array(); $items=array_push($items, $_POST["whatever"]); I'm missing something easy. thx I am having a similar problem: if (! move_uploa

Re: [PHP] Add to array problem

2005-05-16 Thread Petar Nedyalkov
On Monday 16 May 2005 17:26, mayo wrote: > I'm having a little problem adding to an array. Each time I add to an > array it wipes what was previously added. I'm using array_push(). > > $items=array(); > $items=array_push($items, $_POST["whatever"]); Don't assign the result of the array_push() func

Re: [PHP] Add to array problem

2005-05-16 Thread Marek Kilimajer
mayo wrote: I'm having a little problem adding to an array. Each time I add to an array it wipes what was previously added. I'm using array_push(). $items=array(); $items=array_push($items, $_POST["whatever"]); I'm missing something easy. thx array_push() returns the number of elements in

RE: [PHP] Add to array problem

2005-05-16 Thread Mark Rees
-Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: 16 May 2005 15:26 To: php Subject: [PHP] Add to array problem I'm having a little problem adding to an array. Each time I add to an array it wipes what was previously added. I'm using array_push(). $items=array(); Looking at

Re: [PHP] Add to array problem

2005-05-16 Thread Chris
If you're doing: $items=array(); before each array_push() call, that is emptying the array, then pushing the value onto the empty array. mayo wrote: I'm having a little problem adding to an array. Each time I add to an array it wipes what was previously added. I'm using array_push(). $items=array(

RE: [PHP] Add to array problem

2005-05-16 Thread Murray @ PlanetThoughtful
> I'm having a little problem adding to an array. Each time I add to an > array it wipes what was previously added. I'm using array_push(). > > $items=array(); > $items=array_push($items, $_POST["whatever"]); > > I'm missing something easy. Try: $items=array(); array_push($items, $_POST["whatev

RE: [PHP] Add to array problem

2005-05-16 Thread Shaw, Chris - Accenture
Hello, $items=array(); Sets $items to an array with nothing in, so if you had anything in there previously, its gone. Here is the example from the help file. Array ( [0] => orange [1] => banana [2] => apple [3] => raspberry ) Chris. -Original Message- From: mayo [ma