我在 Eclipse PHP 的 PHP 文件下有一段代码。
$username = mysql_real_escape_string( $username );
它会生成错误警告:
mysql_real_escape_string() [function.mysql-real-escape-string]:无法在第 37 行的 /web_development/php_work/new_test/test.php 中建立到服务器的链接
看起来 Eclipse PHP 无法连接到 XAMPP 的 MySQL,那么我该如何解决呢?
我添加了两行
@mysql_connect('localhost','root', '') or die('Could not connect to : ' . mysql_error());
@mysql_select_db('test') or die( "-Unable to select database");
但 Eclipse 仍然让我失望。
mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Can't connect to local MySQL server through socket '/tmp/mysql.sock'
谢谢。