Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.