search Ideas?
Posted: Thu Nov 09, 2006 5:04 pm
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:
Thanks, tommy
Am currently using the following construct to display the results:
Code: Select all
while ($row = mysql_fetch_array($result)) {
echo $row['fname'];
}