Codice PHP:
$offset 1;
for(
$x 0$x 6$x++) {
    for(
$y 0$y 6$y++) {
        
$matrice[$x][$y] = $y $offset;
    }
    
$offset++;