数据库
首页 > 数据库> > 删除脚本PHP MySQL

删除脚本PHP MySQL

作者:互联网

我是PHP MySQL的初学者,所有我想知道如何为每个特定记录创建一个DELETE函数.

enter image description here

这是我选择记录时的代码.我不知道如何插入DELETE函数以及代码结构如何.

$res=mysql_query("SELECT * FROM accounts WHERE user_id=".$_SESSION['user']);
$userRow=mysql_fetch_array($res);


$sql = "SELECT * FROM accounts ORDER BY agentFname ASC";

 if($result = mysql_query($sql)){
     if (mysql_num_rows($result) > 0 ) {



             <table id="example" class="table table-striped responsive-utilities jambo_table">

                 <thead>

                      <tr class="headings">

              <?php           

                   echo "<th>ID</th>"; // Primary Key
                   echo "<th>Agent Code</th>"; // Unique Key
                   echo "<th>First Name</th>";  
                   echo "<th>Middle Name</th>";    
                   echo "<th>Last Name</th>";     
                   echo "<th>Contact Number</th>";     
                   echo "<th>Address</th>";     
                   echo "<th>Gender</th>";
                   echo "<th>User Type</th>"; 
                   echo "<th>Action</th>";        
                   echo "</tr>"; 
                   echo "</thead>"; 

           }  while($row = mysql_fetch_array($result))  {

               echo"<tbody>";
               echo " <tr class=\"even pointer\">"; 

               echo "<td>" .$row['user_id']. "</td>";  // Primary Key
               echo "<td>" .$row['agentCode']. "</td>";  // Unique Key
               echo "<td>" .$row['agentFname']. "</td>";
               echo "<td>" .$row['agentMname']. "</td>";
               echo "<td>" .$row['agentLname']. "</td>";
               echo "<td>" .$row['agentContact']. "</td>";
               echo "<td>" .$row['agentAddress']. "</td>";
               echo "<td>" .$row['agentGender']. "</td>";
               echo "<td>" .$row['user_type']. "</td>";
               echo "<td> <a href=\"#.php\"> Delete</a></td>"; // DELETE Function
               echo "</tr>";
                }

            }

解决方法:

只需在href中传递用户ID和文件名即可.

echo "<td> <a href="yourfile.php?id=<?php echo $row['user_id'];?>"> Delete</a></td>";

然后创建您的文件.
例如您的filename.php

<?php

$id=$_GET['id'];

$sql=mysql_query("DELETE FROM tablename where user_id='$id'");

if($sql > 0)
{
  echo "record successfully deleted";
}
else
{
 echo "errore in deleting";
}

?>

标签:sql-delete,mysql,php
来源: https://codeday.me/bug/20191119/2037493.html