我正在尝试从我的数据库中获取最新帖子。如果我运行以下代码,我会收到以下消息:
“无效查询:您的 SQL 语法有错误;请检查与您的 MySQL 服务器版本相对应的手册,以在第 2 行的 'TABLE newsposts ORDER BY newsposts.post_id DESC' 附近使用正确的语法”
<?php
$getPosts = mysql_query("SELECT newsposts.post_id, newsposts.post
FROM TABLE newsposts
ORDER BY newsposts.post_id DESC
LIMIT 1") or die('Invalid query: ' . mysql_error());
while($getPosts_Array = mysql_fetch_array($getPosts)){
$post_id = $getPosts_Array['post_id'];
$post = $getPosts_Array['post'];
echo "
$post;
";
}
?>