Hi

I have been trying to do this for hours now.
I have a while loop (rows from mysql db) and on each pass I want to pussh 
a new element into a 2D array, bot always end up with the last element of 
the while loop.  So:

table mytable
myname     myphone     myemail
john       254688      [EMAIL PROTECTED]
tom        789787      [EMAIL PROTECTED]

$myquery="select * from mytable";

while ($myrow = mysql_fetch_array($myrows)) {
  .. .. . .  .

  $my2darray = array ($myname => array ($myphone,$myemail));
  
}

$mycount=count(my2darray);  // returns 1

while (list($key,$value) = each ($my2darray)) {
  echo"$key,";    
  echo"$value[0]";
  echo"$value[1]<br>";
  // retuns only one row with tom,798779,[EMAIL PROTECTED]
}

How do I push multiple entries into a 2d array?

I tried $my2darray[]=array(.......

Regards

Ajdin

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