Project

Profile

Help

HostedRedmine.com has moved to the Planio platform. All logins and passwords remained the same. All users will be able to login and use Redmine just as before. Read more...

Task #596914 » conn.php

Arjun Yovita, 2016-10-12 09:02 AM

 
<?php
$dbhost= 'localhost';
$dbuser= 'root';
$dbpass= '';
$conn= mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("admin") or die(mysql_error());
echo '....';
?>
(1-1/2)