Get Max field value of MySQL Table by PHP

This function helps to get the max value of the table for the field. You will just require to pass the field which you want the max value and the table name it will return the max value of that field. Continue reading...

Connect to a MySQL database

To connect to a MySQL database to make the data from the database available in your Web application, you can do two things:
1. create a connect.php page, and ‘include’ this page in the PHP page(s) where you need the connection to the database. Continue reading...