Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Simple PHP paging class

Frequently in our web applications, we may have many records in the database to display. In order to imrpove loading speed and efficiency, we may need to display some records at a time, so we need to paginate the records. For example, if we have 1 million book records and when users want to view the book list, it's inefficient to display all the records on the same page, we may need to have some pagination to allow displaying a portion of the records such as 20 records per page. This is a simple PHP pagination class, here is the code.paing.php<?phpclass Paging {  public static $count =...

6,178 0       PHP CLASS PAGING