码迷,mamicode.com
首页 > 数据库 > 详细

mysql 基础

时间:2017-12-14 13:15:05      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:print   jin   root   class   close   post   array   names   etc   

<?php
$mysql_conf = array(
‘host‘ => ‘localhost‘,
‘db‘ => ‘zhijin‘,
‘db_user‘ => ‘root‘,
‘db_pwd‘ => ‘‘,
);
$mysql_conn = @mysql_connect($mysql_conf[‘host‘], $mysql_conf[‘db_user‘], $mysql_conf[‘db_pwd‘]);
if (!$mysql_conn) {
die("could not connect to the database:\n" . mysql_error());//诊断连接错误
}
mysql_query("set names ‘utf8‘");//编码转化
$select_db = mysql_select_db($mysql_conf[‘db‘]);
if (!$select_db) {
die("could not connect to the db:\n" . mysql_error());
}
$sql = "select * from article;";
$res = mysql_query($sql);
if (!$res) {
die("could get the res:\n" . mysql_error());
}

while ($row = mysql_fetch_assoc($res)) {
print_r($row);
}

mysql_close($mysql_conn);
?>

mysql 基础

标签:print   jin   root   class   close   post   array   names   etc   

原文地址:http://www.cnblogs.com/vip-deng-vip/p/8036905.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!