> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, 23 September 2001 15:39
> To: [EMAIL PROTECTED]
> Subject: [PHP] Create Array??
> 
> 
> Hi,
> 
> If I have a value $num = 32; based on this how can I create an Array of 
> numbers 1 - 32, something like this...
> 
> <?
> $num = "32";

 $num = 32;
 $iary = array();

> for ($i = 1; $i <= $num; $i++)
> {

        $iary[$i] = $i;
// if you actually wanted the array to contain "1" etc then try
// $iary[$i] = "\"$i\"";

> // Do something
> }

// And now $iary = ("1","2","3",etc

var_dump($iary);

> ?>
> 
> Any suggestions?? I cannot use array_push as this has to work on a PHP3 
> server.
> 
> TIA
> Ade
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to