mariaDB-无法连接php / page只是空白

时间:2018-02-14 01:45:03

标签: php mysql raspberry-pi mariadb

我在我的覆盆子pi上运行了一个安装了mariadb的网络服务器。我可以连接和使用我的python脚本数据库没问题。但是当我尝试用php连接时:

<?php
     $dbhost = 'localhost';
     $dbuser = 'root';
     $dbpass = 'password';
     $conn = mysql_connect($dbhost, $dbuser, $dbpass);

     if(! $conn ) {
        die('Could not connect: ' . mysql_error());
     }

     echo 'Connected successfully';
     mysql_close($conn);
  ?>

页面只是空白。我甚至将此.php文件的权限设置为777。 谁能帮帮我pelase?

1 个答案:

答案 0 :(得分:0)

自php 7.0以来,不推荐使用mysql扩展名

使用mysqli扩展名或PDO代替:

http://php.net/manual/en/function.mysqli-connect.php

http://php.net/manual/en/pdo.connections.php