How to get connection strings to various databases in ASP.NET 2.0

How to use connection strings to various Databases in ASP.NET 2.0
Some of the values and strings are used across all the pages of a website. It is a tedious process to code those values and strings in each page of the website.
The connection string will be used in many pages of the web site if [...]

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