Is the error i get trying to connect to my db.
Warning: mysqli_connect() [function.mysqli-connect]: (HY000/2005): Unknown MySQL server host 'http://www.fleethabari.com/' (1) in /home/www/fleethabari.com/inc/config.php on line 2
Unable to select database: Unknown MySQL server host 'http://www.fleethabari.com/' (1)
Warning: mysqli_close() expects parameter 1 to be mysqli, boolean given in /home/www/fleethabari.com/inc/config.php on line 8
$conn=mysqli_connect("http://www.xxx.com/","xxx","xxx","xxx");
// Check connection
if (mysqli_connect_errno($conn))
{
echo "Unable to select database: " . mysqli_connect_error();
}
mysqli_close($conn);
But my app is written in mysql and not in mysqli, i hope this is not a problem