This is the code to connect to the mysql database:
$con = mysql_connect("", "", "");
if (!$con) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db("", $con);
I want to echo ‘connected’/’disconnected’ depending on state.
How can it be done?
Do it Like this
Or try this