ディレクトリの内容を番号順にソートしたいと思います。ディレクトリの内容はイメージです。現在、画像ファイルはランダムに表示されています。新しい画像がディレクトリに追加されるたびに、ページ上でランダムに表示されます。お知らせ下さい!ありがとうございました!
<?php
// set image directory
$image_dir = "main";
//Open images directory
$dir = @ dir($image_dir);
?>
<?php
//List files in images directory
while (($file = $dir->read()) !== false)
{
// remove dir dots
if ($file !== '.' && $file !== '..') {
// print out images
echo '<img src="'. $image_dir . '/' . $file .'" height="600" alt=""/>';
}
}
$dir->close();
?>