Jump to content

PHP Script to check Database Connection from browser


Recommended Posts

HostDens.Com : PHP Script to check Database Connection from browser

It is simple task to check database connectivity from the browser it self and it’s not necessary to logged into server.

Yes, but you should be knowing host-name, password and user

   

<?php
    mysql_connect(‘db_host’, ‘db_username’, ‘password’) or die(‘Could not connect the database : Username or password incorrect’);
    mysql_select_db(‘db_name’) or die (‘No database found’);
    echo ‘Database Connected successfully';
    ?>

 

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.

Example:

1, If all of the input data(db_name, username, password, hostname) are right, then the output is like;

 

    Database Connected successfully

 

2, If any of the entry in ‘mysql_connect’ section is wrong, then the output is;

   

Could not connect the database : Username or password incorrect

 

3, If the database entry is wrong;

   

No database found

 

Thank you for reading !!!

HostDens.com : Enjoy Unlimited Web Hosting | Beyond Your Expectation
Reseller Hosting| VPS Servers (Windows, Linux) | Shared Hosting
$1 Hosting | Affordable Shared Web Hosting Services

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...