day04_08-while查询所有行
Posted darkalex001
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day04_08-while查询所有行相关的知识,希望对你有一定的参考价值。
<?php $link = @mysql_connect(‘localhost‘,‘root‘,‘‘); mysql_query(‘use test‘,$link); mysql_query(‘set names utf8‘,$link); $res = mysql_query(‘select * from user‘); //var_dump($res); print_r(mysql_fetch_assoc($res)); while($row = mysql_fetch_assoc($res)){ //print_r(mysql_fetch_assoc($res));//只会打印出偶数行,因为while在前面已经执行过一次,所以需要加上一个变量赋值,如$row; print_r($row);//打印数组需要print_r } ?>
以上是关于day04_08-while查询所有行的主要内容,如果未能解决你的问题,请参考以下文章
sql [SQL查询片段]用于在命令行或通过R和其他工具使用SQL的快速代码段#tags:sql,R,text processing,命令li