页面在这里:http ://www.arkmediainc.com/ark20test/ark20test/portfolio.php
$result = mysql_query(
"SELECT * FROM foliobro WHERE itemid >= ".$startid." LIMIT 9"
);
while($row = mysql_fetch_array($result))
{
$itemid = $row['itemid'];
$thumb_desc = $row['thumb_desc'];
$title = $row['title'];
$category = $row['category'];
...
}
我得到这个错误代码:
Warning: mysql_fetch_array() expects parameter 1 to be resource,
boolean given in /home/arkmedia/public_html/ark20test/ark20test/portfolio.php
on line 49
49 号线实际上就是那条while($row = mysql_fetch_array($result))
线。
我正在尝试获得以下 9 个结果,或者(id 从 1-11,未来扩展)1-9,或者 10-11+ 我的查询出了什么问题,因为我怀疑查询运行不正常。该查询直接来自 phpMyAdmin,所以我不明白为什么它不起作用。