config.php文件在localhost中正常工作,但它不能在实时网站上运行

时间:2018-01-29 04:17:15

标签: php sql web-hosting

这是config.php文件在localhost中正常工作,但事实并非如此    工作实时网站

<?php 
$connect = @mysql_connect('localhost','root','');
mysql_select_db('bridgetechnosfot'); ?>

1 个答案:

答案 0 :(得分:0)

  

试试这个

$connect = new mysqli('localhost', 'root', '', 'bridgetechnosfot');
if ($connect->connect_error){
        trigger_error('Error:('.$connect->connect_errno.')'.$connect->connect_error);
}
$query = $connect->query("YOUR QUERY..");