Pagination of Data (Paging) using PHP (Hyper Text Pre Processor) and MySQL (the great database)
First: Create a table named user_result in your MySQL Server
CREATE TABLE user_result(
user_id INT(5) NOT NULL AUTO_INCREMENT,
user_name VARCHAR(30),
math_marks INT(2),
phy_marks INT(2) ,
PRIMARY KEY(user_id)
);
Second: Insert some large amount of data into the Table. As without large amount of data you [...]
Filed under: Basic Scripts, Php-MySQL, Scripts, mysql, php, sql | Tagged: get, limit, limit data, mysql, mysql-limit, page data, pagination, paging, php, request, set, sql limit | 2 Comments »
