这是config.php文件在localhost中正常工作,但事实并非如此 工作实时网站
<?php
$connect = @mysql_connect('localhost','root','');
mysql_select_db('bridgetechnosfot'); ?>
答案 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..");