sfrider0 6 Junior Poster

I'm trying to delete rows from my database by using an HTML form. I can retrieve the database and display it nicely in a table using this code:

<table width="889" border="1">
	    <tr>
	      <td width="206" bgcolor="#999999"><div align="center"><strong>Site</strong></div></td>
	      <td width="549" bgcolor="#999999"><div align="center"><strong>Reason</strong></div></td>
	      <td width="112" bgcolor="#999999"><div align="center"><strong>Date Added</strong></div></td>
        </tr>
<?php
$row_count = 0;
$columns = 3;
while ($row = mysql_fetch_assoc($result)) {
if ($row_count == $columns) {
echo "</tr><tr>";
$row_count = 0;
}
echo "<tr><td>";
echo $row['Site'];
echo "</td><td>";
echo $row['Reason'];
echo "</td><td>";
echo $row['Date'];
echo "</td>";
$row_count++;
}
?>
</tr>
</table>

Now I would like to add a checkbox beside each item that will delete it. Possibly be able to check multiple items and delete them by clicking a Delete button at the bottom of the table. Can anybody help me get started or point me to a good tutorial? Any help would be greatly appreciated.