Replace your display Function with this code. You missed to put <tr> tag in your table
function display($getallen){
$table = '<table border="1px" cellpadding="1px">';
$bingokaart = array();
for ($row = 1; $row < 7; ++$row){
$table .= '<tr>';
//iets met rijnummer doen en deze printen?
foreach ($getallen as $number){
$table .= '<td>' .$row . $number .'</td>';
}
$table .= '</tr>';
}
$table .='</table>';
echo $table;
}