猿问

明明在数据库里有两条,但是只输出了最后的一条,为什么呢?

$sql = "select name from movies order by id desc limit 0,10";
$get = mysql_query($sql);
$resul = mysql_fetch_array($get);

for($x = 0;$x <10;$x++)
{
$sql = "select id from movies where name = '$resul[$x]'";
$got = mysql_query($sql);
$result = mysql_fetch_array($got);
echo "<script>alert('$x'+'$resul[$x]')</script>";
echo "<p><a href='watch.php?id=$result[0]'>$resul[$x]</a></p>";
}
这样子在数据库里明明有两条,但是只输出了最后的一条,后面的都是空白

小怪兽爱吃肉
浏览 518回答 1
1回答

qq_笑_17

首先,你查下mysql_fetch_array的定义你就明白了。mysql_fetch_array() 函数从结果集中取得一行作为关联数组,或数字数组,或二者兼有所以你一次只取出了一条,要用这个函数全取出,你用while($resul = mysql_fetch_array($get)){ } 就好了。另外,我是不清楚你这段代码这样写的意义在哪,一次查询就能解决的事情,你变成n次。
随时随地看视频慕课网APP
我要回答