Hi,
I am trying to read form a database and place everything in a
multi-dimentional array
This is what I am doing and the output (for testing) seems correct
while($row=mysql_fetch_array($result))
{
$banner= array($arrayIndex => $row);
echo $banner[$arrayIndex]["image"]. "<br>";
echo $banner[$arrayIndex]["url"]. "<br>";
echo $banner[$arrayIndex]["display_type"]. "<br>";
$arrayIndex++;
}
When I try and use
$value=0;
while($value < $number_of_banners_db )
{
echo $banner[$value]["url"]. "<br>";
echo $banner[$value]["image"]. "<br>";
echo $banner[$value]["display_type"]. "<br>";
}
I only get the last set of values that where entered into the array. I
want to be able to pull all the values out
$banner[0]['url']
$banner[1]['url']
$banner[2]['url'] etc.
I don't use arrays much and I have been going thru my books but I still
can't seem to get it to work.
Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php