Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Not displaying all results
Old 12-06-2008, 06:29 PM Not displaying all results
Average Talker

Posts: 16
Trades: 0
Hey everyone, I currently have image script and I need it to display 5 results at a time. I know how to display the 5 results, but it is only displaying 1. Here is the code:

PHP Code:
$sql "SELECT id, url, images FROM imagedb LIMIT 0,5"
$result $db->sql_query($sql); 
$row $db->sql_fetchrow($result);

print 
'<center><p><a href=
     "image.php?id=' 
$row[id] . '"><img src="' $row[images] . '"></a></p></center>'
It only displays one result. I would like it to display as many that are in the table (only 3 atm) and then I can actual limit some of the results down to 5 or 10. Thanks!
Ghost Sniper X is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 12-06-2008, 06:52 PM Re: Not displaying all results
Insensus's Avatar
Ultra Talker

Posts: 487
Name: Mark Stegeman
Location: Netherlands, Europe
Trades: 0
You should use a loop, of course.
Something like:
PHP Code:
while($row $db->sql_fetchrow($result)){
    print 
'<center><p><a href=
         "image.php?id=' 
$row[id] . '"><img src="' $row[images] . '"></a></p></center>';

__________________
<?php ($helpfull>0)?$talkupation++ : '';?>
Insensus is offline
Reply With Quote
View Public Profile
 
Old 12-06-2008, 07:06 PM Re: Not displaying all results
Average Talker

Posts: 16
Trades: 0
Wooooow, I feel like an idiot, I forgot hahaha . Thank you very much .
Ghost Sniper X is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Not displaying all results
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.35454 seconds with 12 queries