Re: [PHP] Array problrem!

2001-11-14 Thread Andrey Hristov

Try with
foreach ($data as $v)
echo ''.$v;
The values in the array _may_not_have consequetn indexes.

Regards,
Andrey Hristov
IcyGEN Corporation
http://www.icygen.com
BALANCED SOLUTIONS


- Original Message - 
From: "De Necker Henri" <[EMAIL PROTECTED]>
To: "PHP-General (E-mail)" <[EMAIL PROTECTED]>
Sent: Wednesday, November 14, 2001 11:35 AM
Subject: [PHP] Array problrem!


> Hi there.
> I have an array like this : 1.2 , 0.3 , 0.5 , 1.6 , 0.3 
> I output like this:
> 
>  while($data_array[$j]){
>   echo "$data[$j]" ;
>   $j++ ;
>  }
> 
> My output is like this : 1 , 0 , 0 , 1 , 0 
> The values in the db are floats and are read correctly !
> 
> Why is the values not there.Is there a specific way to store values in a
> array?
> 
> -- 
> 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]
> 
> 


-- 
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]




[PHP] Array problrem!

2001-11-14 Thread De Necker Henri

Hi there.
I have an array like this : 1.2 , 0.3 , 0.5 , 1.6 , 0.3 
I output like this:

 while($data_array[$j]){
  echo "$data[$j]" ;
  $j++ ;
 }

My output is like this : 1 , 0 , 0 , 1 , 0 
The values in the db are floats and are read correctly !

Why is the values not there.Is there a specific way to store values in a
array?

-- 
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]