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
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
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
-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
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(
> 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
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
7 matches
Mail list logo