ランダムな画像を表示するために使用しているこのコードがあります。ただし、画像はサイトの左上隅に表示されます。思い通りに画像を配置できるようにしたいと思います。上記のコード順序で私がしなければならない変更は何ですか。コードは次のとおりです-
/*
* Name your images 1.jpg, 2.jpg etc.
*
* Add this line to your page where you want the images to * appear: <?php include"randomimage.php"; ?>
*/
// Change this to the total number of images in the folder
$total = "2";
// Change to the type of files to use eg. .jpg or .gif
$file_type = ".jpg";
// Change to the location of the folder containing the images
$image_folder = "sample.url.com";
// You do not need to edit below this line
$start = "1";
$random = mt_rand($start, $total);
$image_name = $random . $file_type;
echo "<img src=\"$image_folder/$image_name\" alt=\"$image_name\ />";
?>
前もって感謝します