LPMJ Example 3-13 (Click on the icon to view the source for copy and pasting)
<?php
function longdate($timestamp)
{
	$temp = date("l F jS Y", $timestamp);
	return "The date is $temp";
}
?>