Buyrun $
function randomSayi($ustSinir = 49){
    return math.ceil(math.random() * ustSinir);
}

for ($i = 1; $i < 9; $i++){
    echo '<br><br>KOLON<br>';
    for ($j = 1; $j < 7; $j++){
        echo (randomSayi());
    }
}