Skip to content

Instantly share code, notes, and snippets.

@phpfiddle
Created June 29, 2017 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phpfiddle/3d8ef31fac4719a9105e5305d865c20f to your computer and use it in GitHub Desktop.
Save phpfiddle/3d8ef31fac4719a9105e5305d865c20f to your computer and use it in GitHub Desktop.
[ Posted by Beroza Paul ] Pyramid work
<?php
for($i=0; $i<10; $i++){
for($j=0; $j<$i; $j++){
echo $j+1 . " ";
}
echo "<br>";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment