$x=rand(0,100);
if ($x>75) {
echo "In winter, the tree is gray and covered in snow.";
} else if ($x>50) {
echo "In spring, the tree is green and in bloom.";
} else if ($x>25) {
echo "In summer, the tree is still green, but provides comforting shade.";
} else {
echo "In fall, the tree is gold, orange and red.";
}
?>