Rumah >pangkalan data >tutorial mysql >Bagaimana untuk Melaksanakan Butang Padam untuk Mengalih Keluar Baris dari Jadual MySQL Menggunakan PHP?
Tambah Butang Padam untuk Mengalih Keluar Baris daripada Jadual MySQL Menggunakan PHP
Untuk menambah pilihan padam pada baris jadual MySQL yang dipaparkan dalam HTML jadual, anda boleh mengikuti langkah berikut:
<code class="php">$contacts = mysql_query(" SELECT * FROM contacts ORDER BY ID ASC") or die(mysql_error());</code>
<code class="php"><table id="contact-list"> <thead> <tr> <th>Name</th> <th>Email</th> <th>Telephone</th> <th>Address</th> <th>Delete</th> </tr> </thead> <tbody> //Iterate results and display data <?php while( $contact = mysql_fetch_array($contacts) ) : ?> <tr> <td><?php echo $contact['name']; ?></td> <td><?php echo $contact['email']; ?></td> <td><?php echo $contact['telephone']; ?></td> <td><?php echo $contact['address']; ?></td> <td> <form action='delete.php' method="post"> <input type="hidden" name="name" value="<?php echo $contact['name']; ?>"> <input type="submit" name="submit" value="Delete"> </form> </td> </tr> <?php endwhile; ?> </tbody> </table></code>
<code class="php">$query = "DELETE FROM contacts WHERE name={$_POST['name']} LIMIT 1"; // Execute the query to delete the record mysql_query ($query); // Handle success/failure scenarios if (mysql_affected_rows() == 1) { // Success: Contact deleted echo "<strong>Contact Has Been Deleted</strong><br /><br />"; } else { // Failure: Deletion failed echo "<strong>Deletion Failed</strong><br /><br />"; } </code>
<code class="php"><form action='delete.php?name="<?php echo $contact['name']; ?>"' method="post"> <input type="hidden" name="name" value="<?php echo $contact['name']; ?>"> <input type="submit" name="submit" value="Delete"> </form></code>
Atas ialah kandungan terperinci Bagaimana untuk Melaksanakan Butang Padam untuk Mengalih Keluar Baris dari Jadual MySQL Menggunakan PHP?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!