// uygulamanın çalışması için php dosyasının bulunduğu klasörde
// 1.jpg, 2.jpg, 3.jpg, 4.jpg, 5.jpg dosyalarının bulunması gerekmektedir.
<?php
// resim gösterme 5 tane yan yana
for ($i=1;$i<6;$i++) { echo "<img src=$i.jpg width=150 height=150>";
}
?>