ikke tage felt_id 26 med.
hejsa, hvorfår jeg den til at sige:if($row_info[rum] == 8) {
så skal den ikke tage felt_id 26 med
}
her er koden:
<?
$felt_id = 1;
for($row = 0; $row < 6; $row++) {
$top_px = $row*40+2;
if($row % 2) {
$colantal = 9;
$leftplus = 33;
} else {
$colantal = 10;
$leftplus = 3;
}
for($col = 0; $col < $colantal; $col++) {
$left_px = $col * 60;
$left_px = $left_px + $leftplus;
$z = 200 + $felt_id - 1;
echo "<img src='../gfx/trans.gif' id='felt$felt_id'' name='felt$felt_id'' class=\"float\" style=' width: 60px; height: 70px; top:".$top_px."px;left:".$left_px."px;'>\n";
$felt_id++;
}
}
?>