vanaf regel 19 :
echo '<table border="0" width="490" cellspacing="40"><tr>';
while($row = mysql_fetch_array($resultquery)) {
echo '<td>' . <a href="product.php?id=<?php echo $data['ProductId'] ?>"><img src="../images/<?php echo $data['ProductId'] ?>_small.jpg" alt="<?php echo $data['Naam'] . " - " . $data['ProductId'] ?>"></a> . '</td>';
$i++;
if($i % 3 === 0) {
echo '</tr><tr>';
}
}
if($i % 3 !== 0) {
echo '<td colspan="' . $i % 3 . '"> </td>';
}
echo '</tr></table>';
?>
<?php
}
mysql_close();
?>