Skip to content

Instantly share code, notes, and snippets.

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