php 删除记录实现代码

 2025-01-16  阅读 312  评论 8  点赞 333

摘要:复制代码 代码如下:
复制代码 代码如下:

<?php
@mysql_connect("localhost", "root","1981427") //选择数据库之前需要先连接数据库服务器
or die("数据库服务器连接失败");
@mysql_select_db("test") //选择数据库mydb
or die("数据库不存在或不可用");
$query = @mysql_query("select * from tablename1") //执行sql语句
or die("sql语句执行失败");
echo "<form method='post' name='form1' action='delete_do.php'>";
echo "<table border=1>";
//通过循环的方式输出从第0行到最大的一行的所有记录
for($i=0; $i<mysql_numrows($query); $i++)
{
$id = mysql_result($query, $i, 'id'); //输出第$i行的serial_no列
$username = mysql_result($query, $i, 'username'); //输出第$i行的name列
$password = mysql_result($query, $i, 'password'); //输出第$i行的salary列
echo "<tr>";
echo "<td><input type='checkbox' name='chk[]' value='$id'></td>";
echo "<td>$id</td>";
echo "<td>$username</td>";
echo "<td>$password</td>";
echo "</tr>";
}
echo "<tr>";
echo "<td colspan=4 nowrap><input name='submit' type='submit' value='提交'>";
echo "<input type='reset' name='reset' value='重设'></td>";
echo "</tr></table></form>";
?>


复制代码 代码如下:

<?php
@mysql_connect("localhost", "root","1981427") //选择数据库之前需要先连接数据库服务器
or die("数据库服务器连接失败");
@mysql_select_db("test") //选择数据库mydb
or die("数据库不存在或不可用");
foreach($_post['chk'] as $check)
{
$query = mysql_query("delete from tablename1 where id = $check");
if($query)
echo "删除成功";
else
echo "删除失败";
}
mysql_close();
?>


标签:phpphp教程

评论列表:

  •   helloword
     发布于 4天前回复该评论
  • 写的很不错,学到了!
  •   helloword
     发布于 3天前回复该评论
  • 写的很不错,学到了!
  •   xiaoming22
     发布于 3天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0284秒, 内存占用1.94 MB, 访问数据库30次

冀ICP备19034377号