How should i update these data
should i use an array or something and how does that work
$result = mysql_query("SELECT divisie.divisie,
tblcoordinatoren.naam,
tblcoordinatoren.ID,
tblcoordinatoren.afdeling,
tblcoordinatoren.telefoon
FROM tblcoordinatoren
INNER JOIN divisie ON (tblcoordinatoren.divisieID = divisie.divisieID) Order by divisie");
while ($myrow = mysql_fetch_array($result))
{
?>
<table border="0" width="100%">
<tr>
<td width="25%" align="left">
<input type="text" name="ID" VALUE="<?php echo $myrow["ID"]; ?>" size="25">
</td>
<td width="25%" align="left">
<input type="text" name="naam" VALUE="
<?php echo $myrow["naam"]; ?>" size="25"></td>
<td width="25%" align="left"><input type="text" name="afdeling" VALUE="<?php echo $myrow["afdeling"]; ?>" size="25">
</td>
<td width="25%" align="left">
<input type="text" name="telefoon" VALUE="<?php echo $myrow["telefoon"]; ?>" size="25"></td>
}
echo "</td>\n";
echo "</tr>\n";