Please give me a hand retrieving data from the database and showing it.

I'm learning and this is holding me from advancing :(

I have:

    $result = mysql_query($sql);
    $num_reg = mysql_num_rows($result); 
    echo $num_reg; // this shows 3 

    while($row = mysql_fetch_assoc($result))
      {  

        foreach($row as  $value)
       {  


    //Now I need to operate with the rows values.

echo $row['PHONE'];

But this instead of printing the phone numbers, prints them 5 times each

What am I doing wrong?

Thanks a lot

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Remove foreach loop

while($row = mysql_fetch_assoc($result))
{  
 echo $row['PHONE'];
 echo $row['NAME'];
 echo $row['OTHER_FIELD'];
}
link|improve this answer
feedback

you don't need foreach in that case

while($row = mysql_fetch_assoc($result))
{  
    echo $row['PHONE'];
}

Probably your $row has 2 elements, and inside foreach your echo $row['PHONE'] is called once for every element

link|improve this answer
feedback

do a print_r($row) in your while loop and a print_r($value) in your foreach loop. Then ask you why do you echo $row in a loop on $row elements.

link|improve this answer
feedback

You don't need a second foreach() loop inside the while() loop to work on the values. What you're doing here is looping through the rows then looping through the values but if you already have access to the values via the $row variable you don't need to loop again. The fact you get the phone number 5 times suggests you have 5 columns in your table.

An example - remove the foreach() loop:

while($row = mysql_fetch_assoc($result)){
    echo $row['PHONE'];
    echo $row['NAME'];
    echo "<br />";
}

I'm guessing you have a variable called "name" but if not just swap it for one you do have. The last echo just prints a new line to make it easier to read.

link|improve this answer
Thanks a lot to all, now I can go on! – user523129 Dec 23 '10 at 15:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.