怎么才能连上我本地的数据库,他连的这个数据库哪来的??????
用连接Mysqli的方法试试。
//创建对象并打开连接,最后一个参数是选择的数据库名称
$mysqli = new mysqli('localhost','root','','volunteer');
//检查连接是否成功
if (mysqli_connect_errno()){//注意mysqli_connect_error()新特性
die('Unable to connect!'). mysqli_connect_error();
}
虽然我没看教程,但是我感觉你需要先安装数据库,如MySQL