<?php
$sql=mysql_query("select id,pic,news,more1,title from ad where key=1 and newssort=1 and smt_pic<>'' order by id ");
$i=1;
while($info=mysql_fetch_array($sql)){
?>
<li <?php if ($i==1) class="current";else class="normal"; ?>><span style="color:#333333"><?php echo $info[title]; ?></span></li>
<?php
$i=$i+1;
}?>
为啥上面这个代码不行啊不知道哪里错了谢谢老师了作者: fwbook 时间: 2015-5-10 16:23
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in F:\appserv\www\bsweb\4pic.php on line 205
在程序里没有提示错误但在网页中就出现上面的提示了作者: alan007 时间: 2015-5-10 20:27
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in F:\appserv\www\bsweb\4pic.php on line 205
在程序里没有提示错误但在网页中就出现上面的提示了作者: fwbook 时间: 2015-5-11 09:47