Thursday 24th July 2008 Season of the year php script
webspace hosting reseller hosting| web hosting| blog| forum| dating| free hosting| openhost| report abuse
Fax to Email

Unlimited Faxes, No Fees, Dedicated Phone Number

Free Website Templates

 

The date is: Thursday 24th July 2008

It's Summer time

code:

<?php

// Season of year script

// Copyright Kyle Stewart 2006

$season = date("z");

if ($season <= 164 and $season >= 70) {
$m_season = "Spring";
} else {

if ($season <= 295 and $season >= 165) {
$m_season = "Summer";
} else {

if ($season <= 327 and $season >= 296) {
$m_season = "Autumn";
} else {

$m_season = "Winter";
}
}
}

// End of season of year

?>

 

To display in webpage: <?php echo $m_season; ?>