
Hey! It’s very easy and interesting to check your MySQL database connectivity from your account without login as a root user. Here is a script to do the same. To check the database connectivity, you must know the database hostname, normally it is “localhost” then database-name, username and password. PHP Code: It’s very simple concept, first the “mysql_connect” argument will check the database hostname, username and password. If the first argument is true, then PHP take the second line to execute else the script will die with an output given in the Die section. Similarly, mysql_select_db check the database on the server. If both of the arguments are true then you will get an output given after the echo command.