php读取mysql结果集的函数

mysql_fetch_row($result)  //返回索引数组
mysql_fetch_assoc($result)  //返回关联数组
mysql_fetch_array($result)    //返回索引和关联两个数组
mysql_fetch_object($result)  //将一条记录以对象的方式返回


mysql_fetch_row($result) 还可以取出多少条的记录  

$sql='select count(*) from table';

$re=mysql_fetch_row($sql);


echo $re[0];


=============例子===========

从一个表里面取出100条数据


$sql='select * from csdn limit 100';

$res=mysql_query($sql);

  //然后这里是循环出来数据

   while($result=mysql_fetch_assoc($res)){

echo $result;


}


你可能感兴趣的:(mysql/php)