データベースから基本的なリストまたはアイテムを表示しようとしていますが、何らかの理由で最初のアイテムが表示されないため、カテゴリに1つしかない場合は何も表示されませんが、2つある場合は1つのアイテムが表示されます. 以下のコードを追加しました。
クエリ
//this query will fetch 4 records only!
$latestVideos = mysql_query("SELECT * FROM table ORDER BY date DESC LIMIT 5")or die(mysql_error());
$posts = mysql_fetch_array($latestVideos);
ループ中
while($posts = mysql_fetch_array($latestVideos)){
$dateFormat= $posts['video_date'];
$newDate=date('d-m-Y',strtotime($dateFormat));
echo $posts['video_title']
echo $newDate;
echo $posts['video_embed'];
}