0

フォーラムの投稿をデータベースに保存していて、追加された最後の行を選択する必要があります。

私はオンになっている id フィールドを持っているauto_incrementので、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'] ;

私は何を間違っていますか?

4

1 に答える 1

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'] ;

すべてが完璧に機能するようになりました

于 2013-06-15T13:27:26.100 に答える