http://php.flashwebhost.com/vineesh/...n_making_5.php

Code:
<?php

$rain = 'eeeee';

if ($rain == 'yes') {

echo 'It will rain today.'; 

}

else if ($rain == 'no') {

echo 'It will not rain today.'; 

}

else {

echo 'huh...what is this ?';

}