View Single Post
Old 09-14-2012, 08:00 PM   PM User | #2
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,653
Thanks: 4
Thanked 2,451 Times in 2,420 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
You haven't done anything to loop your results. Pulling mysql_fetch_* functions only pull a single record and put them into an array, and then increment the pointer of the resultset to the next row. You need to pull multiple with a loop:
PHP Code:
while ($row mysql_fetch_assoc($result))
{
    
print_r($row);

Fou-Lu is offline   Reply With Quote