我将论坛帖子存储到数据库中,需要选择添加的最后一行。
我有一个位于auto_increment
的id字段,所以我需要做的是选择id是最高的topic = 1
。
这是我到目前为止所得到的并没有回应任何东西。
$statementt56 = $db->prepare("SELECT * FROM topics WHERE topic_cat = '1' ORDER BY topic_id DESC LIMIT 1 ");
$battle_gett56 = $statementt56->fetch();
echo $battle_gett56['topic_subject'] ;
我做错了什么?
答案 0 :(得分:0)
我已使用此代码修复此问题
$statementt = $db->prepare("SELECT * FROM topics WHERE topic_cat = '1' ORDER BY topic_id DESC LIMIT 1 ");
$statementt->execute(array());
$battle_gett = $statementt->fetch(); // Use fetchAll() if you want all results, or just iterate over the statement, since it implements Iterator
echo $battle_gett['topic_subject'] ;
现在一切都很完美