Image Re-cycler
public php v1 · immutable<?php // directory that contains the images$image_path = "/images/";// array that contains the images. The position in the array maps to the day of the week. 0 = sunday, 1 = monday, etc.$images = array("sunday.jpg", "monday.jpg", "tuesday.jpg", "wednesday.jpg", "thursday.jpg", "friday.jpg", "saturday.jpg");// Output the image:print '<img src="' . $image_path . $images[date('w')] . '" alt="description of picture" />';?>