Home > Article > Backend Development > How to delete message board in php
php method to delete message board: first write the [del.php] file and introduce the [conn.php] file; then use the get method to obtain the id data, and use the sql statement to execute the delete statement; finally execute Just end it.
php method to delete message board:
<?php include 'conn.php'; $id = $_GET['id']; $query="delete from message where id=".$id; mysql_query($query); ?> //引入conn文件,使用get方式获取id,使用sql语句来删除id <?php //页面跳转,实现方式为javascript $url = "list.php"; echo "<script>"; echo "window.location.href='$url'"; echo "</script>"; ?> //使用js页面跳转回list查看文件的页面
Related learning recommendations: php graphic tutorial
The above is the detailed content of How to delete message board in php. For more information, please follow other related articles on the PHP Chinese website!