我可以连接到 mysql,但我收到一条错误消息Could not select db
。
有什么我想念的吗?任何帮助深表感谢。
<?php
$link = mysql_connect('localhost','','');
if (!$link) {
die('Could not connect to MySQL: ' . mysql_error());
}
echo 'Connection OK';
$selected=mysql_select_db("test1",$link) or die("<br>Could q not select db");
mysql_close($link);
?>