|
|
 Madhuresh Shah | 2011-07-20 13:42:46 |
Dear Author,
Please help me how to use this class. I have a database.
Regards,
Madhuresh
shahimadhur@gmail.com |
 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"); |
|