PHP Classes

How to use

Recommend this page to a friend!

      Paging Queries  >  All threads  >  How to use  >  (Un) Subscribe thread alerts  
Subject:How to use
Summary:How to use
Messages:2
Author:Madhuresh Shah
Date:2011-07-20 13:42:45
Update:2011-07-20 21:49:15
 

  1. How to use   Reply   Report abuse  
Picture of Madhuresh Shah Madhuresh Shah - 2011-07-20 13:42:46
Dear Author,

Please help me how to use this class. I have a database.

Regards,
Madhuresh
[email protected]

  2. Re: How to use   Reply   Report abuse  
Picture of Arron Houston Arron Houston - 2011-07-20 21:49:15 - In reply to message 1 from Madhuresh Shah
create the object.
$object = new pagingSystem;

specify what the table is that you want to display.
$object->table = "table_name";

specify how many records will be display on each page.
$object->numPage = 20;

specify the where field data
$object->data = array("field = value", "field = value");