时间:2021-07-01 10:21:17 帮助过:42人阅读
$result = mysql_query("select title from hello where title like '%$info%'");while($row=mysql_fetch_array($result))//通过循环读取数据内容 { if(!$row) { echo '1'; } else { echo '2'; } }
while($row=mysql_...
如果$row没有结果就不会进入循环体
原来如此,3q!