ورود

View Full Version : سوال: unable to connect to any of the specified mysql hosts



aflatoon
پنج شنبه 02 تیر 1390, 18:59 عصر
سلام
من یه مشکلی در ارتباط با اتصال به دیتا بیس در هاست دارم
که این اررور رو به من میده
ممنون میشم اگر کسی اطلاعاتی داره در اختیارم بگذاره
ممنون

Arsess
جمعه 03 تیر 1390, 12:38 عصر
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
?>

یا


<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");

/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}

printf("Host information: %s\n", $mysqli->host_info);

/* close connection */
$mysqli->close();
?>