Hi.
I have the following code, that displays records in my database.
How do I display each record along with a checkbox, then when a delete button is clicked, delete the selected records?
mysql_select_db("my_db", $con);
$result = mysql_query("SELECT * FROM person");
while($row = mysql_fetch_array($result))
{
echo $row['FirstName'] . " " . $row['LastName'];
echo "<br />";
}