フォーラムの投稿をデータベースに保存していて、追加された最後の行を選択する必要があります。
私はオンになっている 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'] ;
私は何を間違っていますか?