View Single Post
Old 05-31-2009, 09:02 PM   PM User | #2
venegal
Gütkodierer


 
Join Date: Apr 2009
Posts: 2,127
Thanks: 1
Thanked 426 Times in 424 Posts
venegal has a spectacular aura aboutvenegal has a spectacular aura about
You're only fetching one row there:
PHP Code:
$results_teams mysql_fetch_array($query_teams); 
Instead you should loop over all the rows in the resulting resource:
PHP Code:
while ($results_teams mysql_fetch_array($query_teams)){
// do stuff

venegal is offline   Reply With Quote
Users who have thanked venegal for this post:
unclhos (05-31-2009)