Tired of writing those connect and execute query statements in php all the time ? Now you have got an OOPS way of executing your queries... Using this, there are many advantages like avoiding the reuse of code and improvement in performance. Supose we have a user table with the fields id, name, branch and city: CREATE TABLE IF NOT EXISTS `user` ( `id` int(2) NOT NULL auto_increment, `name` varchar(25) NOT NULL, `branch` varchar(25) NOT NULL, `city` varchar(25) NOT NULL, PRIMARY KEY (`id`) ) Dump few values into it: INSERT INTO `user` (`id`, `name`, `branch`, `city`) VALUES (1, 'ravi', 'CSE', 'Hyderabad'), (2, 'kiran', 'Mech', 'Vijayawada'), (3, 'prasad', 'CSIT', 'Vizag'), (4, 'sashi', 'ECE', 'Tirupati'); Now to perform the task, the following are the steps: 1) First create a config file with the details of the constants like: host, username, password, database name and all the tab...