Created
March 29, 2017 09:48
-
-
Save DylanCodeCabin/313a5689702c4a7beb621268f6f19ca7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if($current_weather == “cloudy”){ | |
| $welcome_message = “It’s cloudy out, grab a jacket.”; | |
| } else if($current_weather == “raining”){ | |
| $welcome_message = “It’s raining out, grab an umbrella.”; | |
| } else { | |
| $welcome_message = “Looking good out there. Have fun.”; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment