All pastes #845983 Raw Edit

Image Re-cycler

public php v1 · immutable
#845983 ·published 2008-01-08 00:36 UTC
rendered paste body
<?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" />';?>