Home >Database >Mysql Tutorial >多次执行mysql_fetch_array()的指针归位问题探讨_MySQL

多次执行mysql_fetch_array()的指针归位问题探讨_MySQL

WBOY
WBOYOriginal
2016-06-01 13:23:431164browse

bitsCN.com 有时候在读取数据库之后,针对同一结果集,在同一个页面上输出的时候可能会碰到多次输出,也就是多次执行mysql_fetch_array(),在第二次执行的时候,如果不加处理,就不会输出任何内容,这种情况下只需要对循环指针进行复位即可。
第一次执行:

while($row=mysql_fetch_array($result)) {
echo $row['name']."
";
}

第二次执行:

mysql_data_seek($result,0);//指针复位
while($row=mysql_fetch_array($result)) {
echo $row['name']."
";
}
bitsCN.com

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