Skip to content

Instantly share code, notes, and snippets.

@magmastonealex
Created October 3, 2013 20:32
Show Gist options
  • Save magmastonealex/6816655 to your computer and use it in GitHub Desktop.
Save magmastonealex/6816655 to your computer and use it in GitHub Desktop.
<?php
for($x = 0; x < 5; x++){
for($y = 0; y < $x; y++){
echo "*";
}
echo "<br>";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment