Pagination of Data using PHP-MySQL

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 [...]

Connect MySQL From Java (JDBC)

Download MySQL Server: 
The main download page for both the database server and the connector as of September 2004 is http://dev.mysql.com/downloads/. 
Several different versions of the database server are available for downloading:
MySQL 5.0 — Generally Available (GA) release for production use
Upcoming Releases:
MySQL 5.1 — Release Candidate release, Test new features early!
MySQL 6.0 — Alpha – Falcon Preview [...]