WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
<?php// Total images that are in the folder set below$total = "11";// The file type you want to use$file_type = ".jpg";// The location of your random images$image_folder = "../media/random";// No editing needed below this$start = "1";$random = mt_rand($start, $total);$image_name = $random . $file_type;echo "<img src=\"$image_folder/$image_name\" alt=\"$image_name\" />";?>
<?php$total = "6";$file_type = ".jpg";$dir = TEMPLATE_DIR; // get template-dir $image_folder = "img/random";$start = "1";$random = mt_rand($start, $total);$image_name = $random . $file_type;$filename = "$image_folder/$image_name";print "<img src=\"$dir/$image_folder/$image_name\" />";?>