Home >php教程 >php手册 >PHP操作MySql数据库

PHP操作MySql数据库

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 10:49:151059browse

//链接数据库

  $conn = @mysql_connect("localhost","root","88888888") or die ("链接错误");
 //解决中文乱码

  mysql_query("set names 'GBK'"); 

//打开数据库
  mysql_select_db("wordpress",$conn) or die("打开失败");
  $sql = "select * from wp_posts";

//执行sql语句
  $result = mysql_query($sql,$conn);

//循环打印所需参数
  while($row = mysql_fetch_array($result))
   {
    echo $row[4]."
";//测验多次,$row[4]中只能为索引,不能为列名,郁闷中ing
   }

 

 

摘自 灯下烛影

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP soap拓展的使用Next article:phpMyAdmin配置备忘