用while怎么循环数据库里的内容
只循环前3条的数据
我循环为什么老死循环 郁闷
<?php
$res = mysql_query("select * from imgex limit 0,3 ");
while($row){
?>
<?= $row['imgex_Address']?> </tr>
<?php ?>
这是我的 应该怎么弄
用while怎么循环数据库里的内容
只循环前3条的数据
我循环为什么老死循环 郁闷
<?php
$res = mysql_query("select * from imgex limit 0,3 ");
while($row){
?>
<?= $row['imgex_Address']?> </tr>
<?php ?>
这是我的 应该怎么弄