私はこれを持っています: http ://screencloud.net/img/screenshots/e796a906e816a8c44f9be15ed37d1735.png
お分かりのように、右側は左側と同じ順番です。基本的にそれを見せたくありません。ニュース記事を投稿するときに、スタックしますが、左側に最も古いものが表示される場所に配置したいと思います。あなたが私が何を意味するかを理解しているなら。
私はこれを望んでいません:http ://screencloud.net/img/screenshots/d9be1bd327b31c523094e19510ff4922.png
ビューが右を向いている場合、同じ記事が表示されます。記事全体の左側にあるコードは次のとおりです。
$grab = mysql_query("SELECT * FROM articles WHERE id='" . mysql_real_escape_string($_GET['id']) . "' LIMIT 1");
$grab = mysql_query("SELECT id, news_title, news_content, news_author, news_day, news_month, news_year, news_date FROM articles ORDER BY id DESC limit 4");
私が右側に持っているのはこれです:
$grab = mysql_query("SELECT id, news_title, news_content, news_author, news_day, news_month, news_year, news_date FROM articles ORDER BY id DESC limit 8");
私が間違っているのは何なのか、皆さんはたまたま知っていますか?