如何修复无法打开流?

时间:2016-07-04 17:26:41

标签: php mysql stream

所以我收到了这个警告,我不知道如何解决它。它用于我的连接文件到我的数据库。

Warning: require(includes/connect.inc.php): failed to open stream: No such file or directory in /customers/5/e/6/gixter.dk/httpd.www/index.php on line 4 Fatal error: require(): Failed opening required 'includes/connect.inc.php' (include_path='.:/usr/share/php') in /customers/5/e/6/gixter.dk/httpd.www/index.php on line 4

我的连接文件如下所示:

<?php
$conn_error = 'Cound not connect to database.';

$mysql_host = 'xxxxx';
$mysql_user = 'xxxxx';
$mysql_pass = 'xxxxx';
$mysql_db = 'xxxxx';

if (!@mysql_connect($mysql_host, $mysql_user, $mysql_pass) or !@mysql_select_db($mysql_db)){
    die($conn_error);
}
?>

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

您指定的路径不正确。该文件不存在或无法在文件夹中找到。它可能在更高的层次上。 (../)

不再支持mysql扩展,请查看mysql_i扩展或PDO。不推荐使用Mysql,并且容易受到SQL注入攻击。

Mysql_i

PDO