Skip to content

Instantly share code, notes, and snippets.

@cheapwebmonkey
Created May 23, 2015 15:53
Show Gist options
  • Save cheapwebmonkey/fbcde8ec51cf4686010d to your computer and use it in GitHub Desktop.
Save cheapwebmonkey/fbcde8ec51cf4686010d to your computer and use it in GitHub Desktop.
Lists different ice cream flavors in php array
<?php
$flavors = array("Vanilla","chocolate", "Strawberry", "Spumoni");
?><pre>
<?php
echo "We have " . count($flavors) . " flavors available. Here's a list:\n";
foreach ($flavors as $flavor) {
echo $flavor . "\n";
}
?>
</pre>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment