<?php
$image_folder = "images/";
$today = date('d');
if (file_exists($image_folder."/".$today.".jpg")) {
echo "<center><br /><br /><img src="$image_folder/".$today.".jpg"></center>";
}
else {
echo "No image was found for $today";
}
/* First to collect images */
?>
등록된 댓글이 없습니다.