Come faccio ad inserire una checkbox in una tabella ? il codice della tabella è funzionante
echo"<table border='1'>";
echo "<tr> <td colspan='8' style='text-align:center; color:red;'> Visualizza richieste </td> </tr>";
//intestazioni
echo"<tr style='font-weight:bold; color:blue;'>",
"<td> Nome studente </td> <td> Matricola </td> <td> Nome esame </td> <td> Iscrivi all'esame </td>",
"</tr> \n";
<td><form action=""><input type="checkbox"></form> </td>;
//righe con i dati
while ($dato=mysql_fetch_assoc($risultato)){
echo"<tr>";
foreach($dato as $campo)
print "<td> $campo </td>";
echo"</tr>\n";
}
echo "</table>";