Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save VictorFursa/024a595fe690adff9c12 to your computer and use it in GitHub Desktop.

Select an option

Save VictorFursa/024a595fe690adff9c12 to your computer and use it in GitHub Desktop.
$a = array();
$n = 10;
$counter = 1;
for($i=0;$i < $n ;$i++){
for($j=0;$j <$n;$j++){
$a[$j][$i] = $counter;
$counter++;
}
}
var_dump($a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment