How to delete a piece of data in php: execute [echo 'Delete the '] statement.
Specific method:
(Recommended tutorial: php video tutorial )
echo '<a href="www.phpfensi.com/11.php?id=你要删除记录" confirm("是否真的要删除当前记录?")">删除</a>'.
Of course you can also use the following method to delete instances. The code is as follows:
<script language='javascript'> function del(id){ if (false === confirm('是否真的要删除当前记录?') )return; location.href = 'delete.php?id=' + id; } </script>
Here you only need to modify your database connection username and password, the database name and the data table name. That’s it.
<?php $conn = mysql_connect("localhost","root","8588027"); mysql_select_db("test"); $exec="delete from content where id='{$_get['id']}'"; mysql_query($exec); mysql_close(); echo "<script language='javascript'>location.href='code.php';</script>"; ?>
Related recommendations:php training
The above is the detailed content of How to delete a piece of data in php. For more information, please follow other related articles on the PHP Chinese website!