Skip to content

Instantly share code, notes, and snippets.

@DylanCodeCabin
Created March 29, 2017 09:48
Show Gist options
  • Select an option

  • Save DylanCodeCabin/313a5689702c4a7beb621268f6f19ca7 to your computer and use it in GitHub Desktop.

Select an option

Save DylanCodeCabin/313a5689702c4a7beb621268f6f19ca7 to your computer and use it in GitHub Desktop.
<?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