Blogger Information
Blog 3
fans 0
comment 0
visits 3865
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP操作数据库的操作及流程
列彩天要的博客
Original
951 people have browsed it

PHP连接数据库,首先配置数据库的连接信息:

header("Content-Type:text/html;charset=utf-8");
$host="localhost" ;  //设置数据库地址
$userName="root";    //使用驼峰式命名法,设置数据库账号
$password="root";    //设置数据库密码
$dbName = "tp5";     //设置连接的数据库
$conn = mysql_connect($host,$userName,$password); 
//使用mysql_connet()函数连接数据库,传入的参数依次为
//mysql_connet("数据库地址","数据库账号","数据库密码");
//通过if语句判断数据库是否连接成功
//$conn通过mysql_connect()函数获取到一个资源集,如果连接成功,则资源集存在不为空,看成是真值。
//如果连接不成功,则资源集不存在,则数据库连接失败。
if(!$conn){
    die("数据库连接失败");
    }else{
        //可以写数据库的相关查询代码;
        mysql_select_db($dbName);    //使用mysql_select_db()函数来选择使用的数据库;
        mysql_query("set names 'utf8'");    //设置数据库使用的字符集为UTF-8格式;
        $res = mysql_query('select * from user');
        //通过mysql_query()函数来执行MYSQL语句,将返回值保存到变量$res中;
	//$row = mysql_fetch_assoc($res);
	//通过mysql_fetch_assoc()函数返回数据库查询到的关联数组中的值;
	while($row = mysql_fetch_assoc($res)){   //通过while循环遍历查询结果
	    echo "<pre>";
	    print_f($row);
	    echo "</pre>";
	}
    }


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!