Jump to content

advance button


proctk

Recommended Posts

Hi

 

On the bottom of many forms and long web pages there are numbers on the bottom of the page that gets the next x entrys.  I know how to do this with a link and advance x at a time.  On many websites there is a little box with the number 1,2,3 etc that is clickable to advance the query.

 

can anyone point me to a tutorial to show how to do this

 

thank you

Link to comment
https://forums.phpfreaks.com/topic/63835-advance-button/
Share on other sites

actual its called pagnation and the basic concept is this

<?php
$resultsperpage = 20; //Number of Results per Page
$currentpage = $_GET['Page'];
$min = $currentpage*$resultsperpage;
$max = $min+$resultsperpage;

$sql = "select some stuff from table where some more stuff limit ".$min.",".$max". Order by Some stuff";
?>

Link to comment
https://forums.phpfreaks.com/topic/63835-advance-button/#findComment-318185
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.