Re: Multidimentional array problems

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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++;
}

What are you setting $arrayIndex to initially (before the while loop starts?)

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.

Try a print_r($banner) and see what it looks like....

-philip

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux