Jump to content

How to add a delete button to this


Jedijon

Recommended Posts

<?php
$con=mysqli_connect("IP","Username","Password","Database");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

$result = mysqli_query($con,"SELECT * FROM support");

echo "<table border='1'>
<tr>
<th>Name</th>
<th>Email</th>
<th>Priority</th>
<th>Type</th>
<th>Subject</th>
<th>Message</th>
</tr>";

while($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['name'] . "</td>";
echo "<td>" . $row['email'] . "</td>";
echo "<td>" . $row['priority'] . "</td>";
echo "<td>" . $row['type'] . "</td>";
echo "<td>" . $row['subject'] . "</td>";
echo "<td>" . $row['message'] . "</td>";
echo "</tr>";
}
echo "</table>";

mysqli_close($con);
?>

Link to comment
Share on other sites

FYI sarcasm doesn't translate well over the internet unless you lay it on really thick.

Don't know where to start? Wrap the whole table in a <form> that will post back to this same page. In each row, add a <button> named "delete" with a value that is unique for the row - so you know what to delete.

To handle the delete, check $_POST for the delete button. If present you'll know which row to delete. Delete it.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.