Курсовая работа: Программная реализация предметной области "Ремонт часов"
</tr>';
$query7 = mysql_query("Select * from Master", $conn);
while ($row7 = mysql_fetch_array($query7))
{
echo '<tr>
<td><div align="left">'.$row7['KodMastera'].'</div></td>
<td><div align="left">'.$row7['FIOMastera'].'</div></td>
<td><input type=checkbox name=kodmastera[] value='.$row7['KodMastera'].'></td>
</tr>';
}
echo ' </table>';
echo '<p> </p>';
echo '<table border="0">';
echo '
<tr><td
width="300"><p><div align=left><strong>Услуги</strong></div></p>
<select name=service size=7 multiple>';
$query8 = mysql_query("Select NameService from Service", $conn);
while ($row8 = mysql_fetch_array($query8))
{
echo '<option value=1># '.$row8['NameService'].'</option>
}
echo '</select></td>';
echo ' <td width="300"><p><div align=center><strong>Запасные части</strong></div></p>
<select name=zapchasti size=7 multiple>';
$query9 = mysql_query("Select NameZapChasti from ZapChasti", $conn);
while ($row9 = mysql_fetch_array($query9))
{
echo '<option value=1># '.$row9['NameZapChasti'].'</option> ';