Skip to content

Instantly share code, notes, and snippets.

@mrmccormack
Last active December 15, 2017 20:24
Show Gist options
  • Save mrmccormack/6dd7234e02c693562f62b07562952353 to your computer and use it in GitHub Desktop.
Save mrmccormack/6dd7234e02c693562f62b07562952353 to your computer and use it in GitHub Desktop.
IM315 color.php for test
<?php
$favcolor = "red";
switch ($favcolor)
{
case "red":
echo "Your favorite color is red!";
break;
case "blue":
echo "Your favorite color is blue!";
break;
case "green":
echo "Your favorite color is green!";
break;
default:
echo "Your favorite color is neither red, blue, or green!";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment