无法从php5.5连接到mysql数据库

时间:2020-02-20 21:17:08

标签: php mysql config

这在config.php5文件中:

    <?php


       $host_name = "dbxxxxxxxxx.db.1and1.com";
       $db = "xxxxxxxxx";
       $user_name = "dboxxxxxxx";
       $password = "password";
        $connect = mysql_connect($host_name, $user_name, 
        $password);

我的主机未经我的同意将我升级到了php7。当他们这样做时,mysql_connect函数无法连接,并返回错误代码“无法连接.....” 他们将php重新设置为5.5版本,但我仍然无法连接。 这是尝试通过调用以下代码进行连接的代码 配置文件

一些代码在这里: <* require_once(“ config.php5”); *> 一些代码在这里:

直到两天前,该程序已经运行了20多年。有人有什么主意吗?

0 个答案:

没有答案