View Single Post
Old Jun 27th, 2007, 1:59 PM   #2
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,467
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
Change query to be this:

$query="SELECT title,artist,genreID,url FROM tunes";

Then try this while loop...

while ($myrow = mysql_fetch_row($result))
{
    echo "$myrow[0]<br>$myrow[1]<br>$myrow[2]<br>$myrow[3]<br><p>"";
}

I haven't tested this, but it should work.
__________________
http://jasonpowers.net

"There are a thousand hacking at the branches of evil to one who is striking at the root."
Infinite Recursion is offline   Reply With Quote