简体   繁体   中英

How to delete a record from mysql using a button?

I would like to be able to delete a row using the delete-button I display at the end of each row. I need two queries to delete a person from my database completely since I have a nm relationship between Persons and Functions. The queries are as follows:

delete from `Persons` where `Person ID` = '1';

I would like to implement these queries using the delete-button provided in the actual code, how can I do this?

UPDATE: I made changes according to what Kristian Hareland wrote, and it reloads but the person isn't deleted, what should be changed to make it work?

showall.php:

    <table>
<thead>
    <tr>
        <?php
// Variables
  $dbhost = "localhost";
  $dbuser = "root";
  $dbpass = "root";
  $dbname = "CISV";
  $dberror1 = "Could not connect to database: ";
  $dberror2 = "Could not select database: ";
  $dberror3 = "Could not execute query: ";

  $conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ($dberror1 . mysql_error());

  $select_db = mysql_select_db('CISV') or die ($dberror2 . mysql_error());

        $query = "SELECT p.`Person ID`, p.`First Name`, p.`Last Name`, p.Gender, p.`Date Of Birth`, p.Email, p.`Phone Number`, c.Region, c.Country, p.`Delegation ID`
        FROM Persons as p, Chapters as c
        WHERE c.`Chapter ID`=p.`Chapter ID`
        ORDER BY p.`Delegation ID";

        $result = mysql_query($query) or die($dberror3 . mysql_error());
        $row = mysql_fetch_assoc($result);
        foreach ($row as $col => $value) {
            echo "<th>";
            echo $col;
            echo "</th>";
        }
        ?>
    </tr>
</thead>
<tbody>
<?php

mysql_data_seek($result, 0);
while ($row = mysql_fetch_assoc($result)) {
    ?>
    <tr>
      <?php         
      foreach($row as $key => $value){
        echo "<td>";
        echo $value;
        echo "</td>";
    }
    ?>
    <td><a href="/DeletePerson.php?id=<?php echo $result['Person ID']; ?>" class="btn btn-danger">Delete</a></td>
</tr>
<?php } ?>

DeletePerson.php:

<?php
$dbhost = "localhost";
$dbuser = "root";
$dbpass = "root";
$dbname = "CISV";
$dberror1 = "Could not connect to database: ";
$dberror2 = "Could not select database: ";
$dberror3 = "Could not execute query: ";

$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ($dberror1 .      mysql_error());

$select_db = mysql_select_db('CISV') or die ($dberror2 . mysql_error());

$UserId = mysql_real_escape_string($_GET['id']);

if(isset($UserId)){
//DELETE QUERY
$Del = mysql_query("DELETE FROM `Persons` WHERE `Person ID` = '$UserId'");

if($Del){
    $Flag = TRUE;
}
else{
    $Flag = FALSE;
}

header("Location: /showall.php?delete=$Flag");


}
else{
die("Error");
}

I would use JavaScript and Ajax here.

  1. Make a Html-button with an onclick function like delete_user();
  2. delete_user() calls a .php file to validate the rights and execute some mysql-delete promts.
  3. The .php file returns a boolean to the JavaScript.
  4. You could catch that boolean up and inform the user about the result.

IMHO best way is create separate file functions.php

<?php
//functions.php
$id = filter_this($_POST[id]);
mysql_query("delete from Persons_Functions where `Person ID` = '$id');
?>

and send there via JQuery:

function deleteuser(id){
    $.post("admin_action.php", {action:'delete_user',id:id}, function(data){
    if(data.trim()=="done"){
        console.log("OK!");
    });
}}

Without JS You can use HTML (just change BUTTON to A):

<a href='script.php?action=delete&id=12'>DELETE</a>

and PHP:

$id = $_GET[id];//filter this value
mysqli_query($link, "DELETE FROM users WHERE ID='$id'"); //use mysqli

I would use the GET method for this

<?php foreach ($results as $result): ?>
    <a href="/index.php?action=delete&id=<?= $result['id']; ?>">Delete</a>
<?php endforeach; ?>

At the top of index.php

if (isset($_GET['action']) && $_GET['action'] == 'delete') {
    if (isset($_GET['id']) && intval($_GET['id']) != 0) {
        $id = intval($_GET['id']);
        $stmt = "delete from table where id='{$id}'";
    }
}

Just use a link:

<tbody>
<?php

mysql_data_seek($result, 0);
while ($row = mysql_fetch_assoc($result)) {
    ?>
    <tr>
        <?php         
        foreach($row as $key => $value){
            echo "<td>";
            echo $value;
            echo "</td>";
        }
        ?>
        <td><a href="/DeletePerson.php?id=<?php echo $result['Person ID']; ?>" class="btn btn-danger">Delete</a></td>
    </tr>
    <?php } ?>
</tbody>

DeletePerson.php:

   <?php

$UserId = mysql_real_escape_string($_GET['id']);

if(isset($UserId)){
   //DELETE QUERY
  mysql_query("DELETE FROM Persons WHERE Person ID = '$UserId'");
  mysql_query("DELETE FROM Persons_Functions WHERE Person ID = '$UserId'");





  header("Location: /showall.php?flag=deleted");


}
else{
die("Error");
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM