为什么$conn->query("select * from user where username='".$username.&qu
如题,这是《php与mysql web开发》这本书中的第一个例子,搜索了很久还是没有解决下面是db_fns.php的代码:
?php
function db_connect(){
$result=new mysqli('localhost','root','','bookmarks');
if(!$result){
throw new Exception("Could not connect to the databases server!");
}
else{
return $result;
}
}
?>
求助!!!!