7 lines
90 B
PHP
7 lines
90 B
PHP
<?php
|
|
function longdate($timestamp)
|
|
{
|
|
return date("l F jS Y", $timestamp);
|
|
}
|
|
?>
|