我正在尝试从名为 say, 的表中选择一列1234
。
$query="select Number from `$table`";
$contacts=mysql_query($query);
while($row=mysql_fetch_array($contacts))
echo $row['Number'];
如果我使用“从”中选择号码1234
,它可以工作。$table 的值是使用 $_REQUEST["key0"] 获得的。我把页面称为"localhost/page_id=22?key0=1234"
什么问题?我在 mysql_fetch_array 语句中收到以下错误:Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\wamp\www\wp-content\plugins\exec-php\includes\runtime.php(42)