Page 1 of 1

Unable to connecy Mysql Database

PostPosted: 25. June 2016 12:49
by nrmehta5
I have just installed xampp and while running php codes through notepad++ I am getting Following error,I have attached written code also,
can anybody help me?Do I need to configure phpAdmin?
Nitin

Fatal error: Uncaught Error: Call to undefined function mysql_connect() in C:\xampp\htdocs\dashboard\Nitin\TABLE\table.php:9 Stack trace: #0 {main} thrown in C:\xampp\htdocs\dashboard\Nitin\TABLE\table.php on line 9<html>
<head>
<title>
Table Connectivity
</title>
</head>
<body>
<?php
$con=mysql_connect("localhost","root","");
if($con)
{
$db=mysql_select_db("nitin1");
if($db)
{
echo "Database connection Successful";
}
else
{
echo "Database Connectivity Failed";
}
}
?>
</body>
</html>

Re: Unable to connecy Mysql Database

PostPosted: 25. June 2016 13:40
by Altrea