mysql 基础

Posted 林间有风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 基础相关的知识,希望对你有一定的参考价值。

<?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 基础的主要内容,如果未能解决你的问题,请参考以下文章

mysql基础学习笔记

mysql基础

MYSQL养成记-MYSQL基础增强(Myql函数)

9月23日 | MySQL基础入门-mysql教程-数据库实战(MySQL基础+MySQL高级+MySQL优化+作业题)

mysql基础

MySQL基础入门