search Ideas?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
tommy1987
Forum Commoner
Posts: 92
Joined: Tue Feb 21, 2006 8:35 pm

search Ideas?

Post by tommy1987 »

I have made a search in PHP and want the results to span several pages with a forward and backward link at the bottom of each page. I have no idea how to do this does anyone know of any tutorials which broach the subject or anything that I should be aware of?

Am currently using the following construct to display the results:

Code: Select all

    while ($row = mysql_fetch_array($result)) {
         echo $row['fname'];
   }
Thanks, tommy
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

P-a-g-i-n-a-t-i-o-n.
User avatar
Cameri
Forum Commoner
Posts: 87
Joined: Tue Apr 12, 2005 4:12 pm
Location: Santo Domingo, Dominican Republic

Post by Cameri »

Post Reply