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

Browser detection and Redirection using Javascript

Browser detection allows you to find out what browser your viewer is using, and then perform a script based on it– or just to send a friendly message to those with your favorite browser.
You might come around a situation when you need to include different Javascript files for different browsers, or call different function. This [...]