In this tutorial, we will try to learn the about the deletion of records in the database table in PHP and MySQL.
Code of deletion of records in the database table in PHP and MySQL.
We can have two pages;
- index.php
- delete.php
Code of index.php by using MySQL and without MySQLi.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<?php mysql_select_db('publisher',mysql_connect('localhost','root','')); ?> <html><body> <table border="1"> <?php $books_query=mysql_query("select * from books"); while($books_rows=mysql_fetch_array($books_query)){ ?> <tr> <td><?php echo $books_rows['BookID'] ; ?></td> <td><?php echo $books_rows['BookTitleAttribute'] ; ?></td> <td><a href="delete.php<?php echo '?id='.$books_rows['BookID']; ?>">delete</a></td> </tr> <?php }?> </table> </body></html> |
Code of delete.php by using MySQL and without MySQLi.
1 2 3 4 5 6 |
<?php mysql_select_db('publisher',mysql_connect('localhost','root','')); $id=$_GET['id']; mysql_query("delete from books where BookID='$id'"); header('location:index.php'); ?> |