Skip to content

Instantly share code, notes, and snippets.

@loraxx753
Created October 23, 2012 13:41
Show Gist options
  • Save loraxx753/3938811 to your computer and use it in GitHub Desktop.
Save loraxx753/3938811 to your computer and use it in GitHub Desktop.
<?php
$peopleWhoHateChris=array('Jacob','John','Mike','Luke');
$countHateChris=count($peopleWhoHateChris);
echo "$countHateChris people think Chris is a fucking retard.";
print $peopleWhoHateChris[2];
unset($peopleWhoHateChris[2]);
foreach($peopleWhoHateChris as $name){
print $name;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment