Skip to content

Instantly share code, notes, and snippets.

@ultramarshall
Created November 18, 2020 13:51
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 ultramarshall/130c1841a7be7d4b1dd0cd69f2a07318 to your computer and use it in GitHub Desktop.
Save ultramarshall/130c1841a7be7d4b1dd0cd69f2a07318 to your computer and use it in GitHub Desktop.
<?php
function cetak($max) {
$bucket = [];
for($i = 0; $i < $max; $i++) {
array_push($bucket,($i + 1));
for ($j = 0; $j < count($bucket); $j++) {
echo $bucket[$j] . " ";
}
echo "<br>";
}
}
echo cetak(8);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment