Ⅰ PHP操作mysql数据库的步骤
$conn=mysql_pconnect("localhost","root","123456");//打开连接
mysql_select_db("数据库名",$conn);//连接到指定的数据库
mysql_query("set names utf8");//设置字符编码
$sql="";
$R=mysql_query($sql);//执行SQL语句返回结果集
while($v=mysql_fetch_array($R)){
echo "字段名".$v['title'];
}