PHP MySQL Tutorial
Learn PHP and MySQL

Paging Using PHP and MySQL (Part II)

100% of people found this useful
Paging Using PHP and MySQL (Part II)

When there's more than one column involved in paging there isn't much that we need to modify. We only need to decide how to count the total number of rows we have in the table. Consider the student table. This table have five columns as shown in the SQL below.

CREATE TABLE student(
   id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
   name VARCHAR(30) NOT NULL,
   address VARCHAR(50) NOT NULL,
   age TINYINT UNSIGNED NOT NULL,
   register_date DATE NOT NULL,

   PRIMARY KEY (id)
);

 

In the select query we just select all the columns. You can also use SELECT * instead of mentioning all the column names ( SELECT id, name, address, age, register_date ). But personally i prefer writing the column names in the query so that by reading the code i know what the column names in a table without having to check the database.

<?php
include 'library/config.php';
include 'library/opendb.php';

// how many rows to show per page
$rowsPerPage = 3;

// by default we show first page
$pageNum = 1;

// if $_GET['page'] defined, use it as page number
if(isset($_GET['page']))
{
$pageNum = $_GET['page'];
}

// counting the offset
$offset = ($pageNum - 1) * $rowsPerPage;

$query = "SELECT id, name, address, age, register_date
          FROM student
          LIMIT $offset, $rowsPerPage"
;
$result = mysql_query($query) or die('Error, query failed');

// print the student info in table
echo '<table border="1"><tr><td>Student Id</td><td>Name</td><td>Address</td><td>Age</td><td>Register Date</td></tr>';
while(list($id, $name, $address, $age, $regdate) = mysql_fetch_array($result))
{
echo "<tr><td>$id</td><td>$name</td><td>$address</td>
<td>$age</td><td>$regdate</td></tr>";
}
echo '</table>';
echo '<br>';

// ... more code here
?>

In this example we print the result in table. Before looping through the array we just echo the starting table code and the header which displays the column names. Then in the loop we just print the values in a HTML table row.

The next thing is finding out the total number of rows. There are several ways to do it. The first one is shown below. It's the same method used in previous examples. We just use the COUNT() function

 

<?php
// ... previous code here

// how many rows we have in database
$query = "SELECT COUNT(id) AS numrows FROM student";
$result = mysql_query($query) or die('Error, query failed');
$row = mysql_fetch_array($result, MYSQL_ASSOC);
$numrows = $row['numrows'];

// ... just the same code that prints the prev & next link
?>

You can also count any other columns since they all yield the same result. So your query can be rewritten into this :

<?php
// ...
$query = "SELECT COUNT(name) AS numrows FROM student";
// ...
?>

Or this :

<?php
// ...
$query = "SELECT COUNT(age) AS numrows FROM student";
// ...
?>

There is another way to count the total rows. Instead of using COUNT() function in the query you use a simple SELECT <column> and use myql_num_rows() to see how many rows returned.

Take a look at the code below. We now separate the query into two parts. One is the normal SELECT query and the second is the SQL that performs the paging. After finish printing the result you can reuse the first part of the query to find the total number of rows.

<?php
// ... same old code to get the page number and counting the offset

$query = "SELECT id, name, address, age, register_date
          FROM student ";

$pagingQuery = "LIMIT $offset, $rowsPerPage";
$result = mysql_query($query . $pagingQuery) or die('Error, query failed');

// ... the code that prints the result in a table

// how many rows we have in database
$result = mysql_query($query) or die('Error, query failed');
$numrows = mysql_num_rows($result);

// ... and here is the code that print the prev & next links
?>

 

There is another advantage in separating the original query with the paging query. In case you only wish to list all student whose age is older than 15. You just need to modify the original query and you don't have to worry about changing the query to find the total number of rows. The example is shown below :

<?php
// ... same old code to get the page number and counting the offset

$query = "SELECT id, name, address, age, register_date
          FROM student
          WHERE age > 15";


$pagingQuery = "LIMIT $offset, $rowsPerPage";
$result = mysql_query($query . $pagingQuery) or die('Error, query failed');

// ... the code that prints the result in a table

// how many rows we have in database
$result = mysql_query($query) or die('Error, query failed');
$numrows = mysql_num_rows($result);

// ... and here is the code that print the prev & next links
?>

The disadvantage of this method is that the second execution of mysql_query() will retrieve all columns from the database. This is very useless since we're not going to use them. We only interested in finding the total rows returned by that query. In the end it's really up to you to decide which method you prefer.

Recent Comments

By: john9 Posted on 03-19-2015 7:55 AM
By: zuzuce123 Posted on 08-22-2015 12:39 AM

chanel bags,www.chanelhandbags.net.in

softball bats,www.cheap-baseballbats.net

nfl jerseys,www.cheapjerseys.us.org

nfl jerseys,www.cheap-jerseys.us.org

cheap jordan shoes,http://www.cheap-jordans.net/

michael kors,www.cheapmichaelkors.us.org

nike shoes,www.cheap-nike-shoes.net

oakley sunglasses,http://www.cheapoakley.us.org/

oakley sunglasses,www.cheapoakleysunglasses.ar.com

oakley sunglasses,www.cheap-oakleysunglasses.in.net

ray ban sunglasses,http://www.cheaprayban.com.co/

discount shoes,http://www.cheapshoes.com.co/

uggs outlet,www.cheap-uggboots.in.net

dre beats,www.beatsbydrdre.co.com

beats audio,http://www.beatsbydre.com.co/

beats audio,www.beats-by-dre.com.co

beats audio,www.beats-headphone.in.net

bebe clothing,http://www.bebeclothing.net/

bottega veneta,http://www.bottega.us/

burberry,http://www.burberrycanada.ca/

burberry outlet,www.burberry-handbags.us.org

burberry outlet online,www.burberryoutlet.club

burberry outlet online,www.burberryoutlet.me.uk

burberry outlet,www.burberryoutletonline.ar.com

burberry outlet online,www.burberrys-outlet.in.net

burberry outlet,www.burberrys-outletonline.in.net

calvin klein underwear,http://www.calvinklein.co.com/

celine bags,http://www.celinebags.org/

chanel sunglasses,http://www.chanel-bags.com.co/

polo ralph lauren,www.polo-outlets.com.co

ralph lauren outlet,www.poloralphlaurenoutlet.net.co

prada outlet,www.pradahandbags.com.co

prada outlet,www.pradahandbags.net.co

prada handbags,http://www.pradaoutlet.com.co/

prada outlet,http://www.pradashoes.com.co/

ralph lauren,http://www.ralph-lauren.ca/

ralph lauren,www.ralph-lauren.com.au

ralph lauren uk,www.ralph-lauren.org.uk

ralph lauren outlet,www.ralphlaurenepolo.com

burberry,http://burberry.outletnow.org/

christian louboutin outlet,christianlouboutin.outlet-shoes.net

tory burch sale,toryburch.salesandals.net

abercrombie,www.abercrombie-and-fitch.ca

abercrombie and fitch,www.abercrombieand-fitch.com.co

abercrombie fitch,www.abercrombie-and-fitch.us.com

abercrombie and fitch,www.abercrombiefitch.us.com

abercrombie,www.abercrombie-kids.us.com

adidas,http://www.adidas--canada.ca/

nike huarache,http://www.air-huarache.co.uk/

retro jordans,http://www.airjordans.us/

jordan release dates 2015,www.airjordanshoes2015.com

air max 2014,http://www.airmax-2015.org/

air max,http://www.airmax-90.org/

babyliss pro,http://www.babyliss.us.org/

barbour jackets sale,www.barbour-factory.com

barbour mens jackets,www.barbour-jacketsoutlet.com

basketball shoes,www.basketballshoes.com.co

bcbg max,http://www.bcbgdresses.net/

bcbg max,http://www.bcbg-max-azria.ca/

flat iron,http://www.chiflatiron.net.co/

louboutin,www.christian--louboutin.in.net

louboutin shoes,www.christianlouboutin.org.uk

louboutin outlet,www.christianlouboutinoutlet.net.co

christian louboutin,www.christianlouboutinshoes.ar.com

christian louboutin,www.christian-louboutin-shoes.ca

louboutin shoes,www.christianlouboutinshoes.jp.net

coach factory outlet online,www.coachfactory-outlet.co.com

coach factory outlet,www.coachfactory-outlet-online.in.net

coach purses,www.coach-handbags.com.co

coach outlet,www.coachoutlet-online.com.co

coach outlet,www.coachoutletstore.net.co

coach outlet,www.coachoutletstore-online.com.co

coco chanel,www.coco-chanelbags.com.co

converse shoes,http://www.converse.net.co/

converse,www.converses-shoes.net

handbags outlet,www.designerhandbagsoutlet.com.co

ed hardy,http://www.edhardy.us.org/

glasses online,www.eyeglassesonline.us.org

glasses frames,www.eyeglassframes.us.org

boutique clothing,www.fashion-clothing.us.org

salvatore ferragamo,http://www.ferragamo.com.co/

ferragamo,http://www.ferragamoshoes.net/

straightener,www.ghdhairstraightener.com.co

giuseppe zanotti,www.giuseppezanotti.com.co

gucci handbags,www.guccihandbags.net.co

gucci outlet,http://www.gucci-outlet.biz/

gucci sale,www.gucci-outletsale.in.net

gucci outlet,http://www.guccishoes.com.co/

gucci outlet,http://www.guccishoes.in.net/

gucci outlet,http://www.guccishoes.us.org/

gucci,http://www.gucci-uk.me.uk/

purses and handbags,www.handbagsoutlet.com.co

harrods,www.harrods-london.co.uk

katespade,http://www.kate-spade.net.co/

kate spade,www.katespade-outlet.net.co

levi's jeans,http://www.levisjeans.com.co/

longchamp outlet,http://www.longchamp.com.co/

longchamp handbags,http://www.longchamp.us.org/

longchamp,www.longchamp-handbags.us.com

longchamp,www.longchampoutlet.com.co

christian louboutin,http://www.louboutin.jp.net/

louis vuitton,www.louisvuitton.jp.net

louis vuitton,www.louis--vuitton.org.uk

louis vuitton outlet,http://www.louisvuitton.so/

louis vuitton outlet,http://www.louisvuittonas.com/

louis vuitton,www.louis-vuitton-australia.com.au

louis vuitton outlet,www.louis-vuittonblackfriday.com

louis vuitton,www.louisvuitton-outlet.com.co

louis vuitton,www.louis-vuittonoutletcanada.ca

louis vuitton outlet,www.louisvuitton-outlets.us

louis vuitton outlet,www.louisvuittonsas.com

lululemon,www.lululemon-australia.com.au

lululemon canada,http://www.lululemoncanada.ca/

lululemon,www.lululemonoutlet.com.co

m a c cosmetics,www.maccosmetics.net.co

marc jacobs handbags,www.marcjacobsonsale.com

mcm handbags,http://www.mcm-bags.in.net/

mcm bags,http://www.mcmhandbags.com.co/

michael kors outlet,www.michael-kors.com.co

michael kors outlet,www.michael-kors.net.co

michael kors outlet online,http://www.michaelkors.so/

michael kors outlet online,www.michael--kors.us.com

michael kors,www.michael-kors-australia.com.au

michael kors purses,www.michaelkorsbags.us.org

michael kors canada,www.michael-kors-canada-outlet.ca

michael kors,www.michaelkorshandbags.org.uk

michael kors outlet,www.michael-kors-handbags.us.com

michael kors outlet online,www.michaelkorsoutlet.ar.com

michael kors outlet online,www.michael-kors-outlet.us.org

michael kors outlet,www.michaelkorsoutlet-online.ar.com

hermes belt,http://www.hermesbags.club/

hermes,http://www.hermesbirkin.biz/

hermes birkin,http://www.hermesoutlet.top/

tommy hilfiger,www.hilfigeroutlet.in.net

hollister,http://www.hollister.us.org/

hollister,http://www.hollistercanada.ca/

hollister clothing store,www.hollisterclothing.in.net

hollister clothing,www.hollister-clothingstore.in.net

insanity workout calendar,www.insanityworkout.net.co

instyler ionic styler,http://www.instylers.us.com/

iphone 6 cases,www.iphone-cases.com.co

jimmy choo shoes,http://www.jimmychoo.net.co/

jordan release dates 2015,www.jordanrelease-dates.net

retro jordans,http://www.jordanretro.org/

jordan shoes,www.jordan-shoes.com.co

juicy couture outlet,www.juicycouture.com.co

juicy couture,www.juicycoutureoutlet.net.co

katespade,http://www.kate-spade.in.net/

michael kors outlet,www.michaelkors-outlet-online.com.co

michael kors outlet,www.michael-kors-outlet-online.us.org

michael kors outlet online,www.michaelkorsoutletonline-sale.us.com

michael kors,www.michaelkors-uk.org.uk

mizuno,http://www.mizunorunning.net/

cheap moncler jackets,www.mmoncler-outlet.com

ugg boots,www.ugg-australia.in.net

uggs outlet,http://www.uggboots.net.co/

uggs outlet,http://www.ugg-boots.us.org/

ugg boots,www.ugg-boots-australia.com.au

ugg boots,www.uggbootsclearance.com.co

uggs,http://www.uggscanada.ca/

uggs,http://www.uggsonsale.com.co/

ugg boots,http://www.uggsoutlet.com.co/

coach outlet store,www.uptocoachoutlet.com

vans store,http://www.vans-shoes.net/

prom dresses,www.wedding--dresses.ca

wedding dresses uk,www.weddingdressesuk.org.uk

woolrich womens jakets,www.woolrich-clearance.com

lululemon,http://www.yoga-pants.ca/

lululemon,http://www.yogapants.com.co/

coach bags outlet,http://www.zxcoachoutlet.com/

moncler jackets sale,www.moncler-outlet.us.org

mont blanc pens,www.montblanc--pens.in.net

new balance,http://www.new-balance.ca/

new balance shoes,www.newbalance-outlet.org

new balance outlet,www.newbalance-shoes.org

coach purses factory,www.newoutletonlinemall.com

cheap jerseys,http://www.nfl-jersey.us.com/

air max,http://www.nike-air-max.ca/

air max,www.nike-air-max.com.au

nike air max 2014,http://www.nike-air-max.us/

nike factory outlet,http://www.nikefactory.org/

nike free trainer 5.0,http://www.nikefree5.net/

pandora jewelry,www.pandorajewellery.com.au

pandora charms,http://www.pandorajewelry.top/

ralph lauren uk,www.ralph-lauren-outlet.org.uk

ralph lauren outlet online,www.ralphlaurenoutlet.us.com

ralph lauren outlet,www.ralphlaurenoutletonline.com.co

ralph lauren polo outlet,www.ralphlaurenoutletonline.in.net

polo ralph lauren,www.ralphlaurenoutletonline.us.org

polo ralph lauren outlet,www.ralphlaurenpolos.in.net

ray ban,http://www.ray--ban.ca/

ray ban sunglasses,www.ray-ban-outlet.us.com

raybans,http://www.raybans.us.org/

ray ban,www.rayban-sunglasses.org.uk

ray ban outlet,www.rayban-sunglasses.us.org

ray ban sunglasses,www.ray-ban-sunglasses-outlet.in.net

ray ban sunglasses,www.raybanwayfarer.in.net

replica handbags,www.replicahandbags.com.co

rolex watches,www.replica-watches.us.com

air jordan retro,http://www.retro-jordans.com/

replica watches,www.rolex-watches.me.uk

replica watches,www.rolex-watches.us.com

rolex watches,www.rolex-watches-canada.ca

replica watches,www.rolexwatchesforsale.us.com

nike roshe,http://www.rosherun.org.uk/

nike roshe,http://www.rosheruns.us/

nike free,http://www.nikefree-run.net/

free run,www.nikefree-run.org.uk

mercurial superfly,www.nikemercurial.in.net

roshe run,http://www.nikerosherun.us/

nike shoes,www.nike-shoes-canada.ca

nike outlet,http://www.nikestore.us/

the north face,http://www.northface.us.org/

the north face outlet,www.northfaceoutlet.com.co

oakley sunglasses,www.oakleyoutlet.us.org

oakley,www.oakley--sunglasses.com.au

cheap oakley sunglasses,www.oakleysunglasses.gr.com

oakley prescription,www.oakley-sunglasses.top

oakley canada,www.oakley-sunglasses-canada.ca

oakley sunglasses,www.oakleysunglassescheap.in.net

rolex watches,www.omegawatches.us.com

p90x3,http://www.p90xworkout.in.net/

pandora bracelet,www.pandora-charms.org.uk

pandora jewelry,www.pandora-charms-canada.ca

ferragamo,www.salvatoreferragamo.in.net

soccer shoes,http://www.soccer-shoes.org/

baseball bats,http://www.softball-bats.us/

supra shoes,http://www.suprashoes.in.net/

swarovski,www.swarovski-australia.com.au

swarovski canada,http://www.swarovskicanada.ca/

swarovski jewelry,www.swarovskicrystal.com.co

swarovski crystal,www.swarovskijewelry.com.co

swarovski uk,www.swarovski-uk.org.uk

north face,http://www.the-north-face.ca/

north face,www.the-northface.com.co

north face,www.thenorth-face.org.uk

north face,www.thenorthface.us.org

north face,www.the-northface.us.org

north face jackets,www.thenorthfacejackets.in.net

thomas sabo uk,http://www.thomas-sabo.me.uk/

tiffany and co,www.tiffany-andco.com.au

tiffany jewelry,www.tiffanyandco.net.co

tiffany and co,www.tiffanyandco-canada.ca

tiffany and co,www.tiffanyjewelry.us.org

timberland outlet,www.timberlandboots-outlet.in.net

timberland outlet,www.timberlandshoes.com.co

tommy hilfiger outlet,www.tommyhilfiger.net.co

tommy hilfiger,www.tommy-hilfiger-canada.ca

tommy hilfiger,www.tommy-hilfigeroutlet.com

toms shoes,http://www.toms-outlet.net.co/

toms shoes,www.toms-outletsale.in.net

toms outlet,http://www.toms-shoes.com.co/

toms shoes,www.toms-shoes-outlet.net

tory burch sandals,www.tory-burch-outlet.in.net

tory burch sandals,www.tory-burchoutlet.us.com

tory burch sandals,www.toryburchsale.com.co

true religion outlet,www.true-religion.com.co

cheap true religion,www.truereligionjeans.net.co

cheap true religion,www.truereligion-outlet.com.co

true religion jeans outlet,www.truereligion-outlet.us.org

By: umangbhat3 Posted on 10-12-2015 9:19 AM

I agree with what you are saying.

Great post.

BTW check this out,

Happy Halloween 2015

Happy Halloween 2015 Wishes

Happy Halloween Wishes

Happy Halloween quotes

Happy Halloween images

www.happyrakshabandhan2015wishes.com

Powered by Community Server (Non-Commercial Edition), by Telligent Systems