php mysql 删除记录, url传值删除数据
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-16 14:17:47 浏览: 评论:0
本款删除数据代码是一款根据用户url地址栏传过来的参数,再去mysql数据库中执行删除操作,PHP实例代码如下:
- $host = 'localhost';
- $user_name = 'root';
- $password = 'admin';
- $conn = mysql_connect($host,$user_name,$password);
- if(!$conn)
- {
- die('数据库连接失败:'.mysql_error());
- }
- mysql_select_db('test');
- $sql = 'select id,name,city,created_time from users';
- $result = mysql_query($sql) or die("<br/>error: <b>".mysql_error()."</b><br/>产生问题的sql:".$sql);
- ?>
- <html>
- <head>
- <title>13-12.php</title>
- <script language="网页特效">
- </script>
- </head>
- <center>
- <body>
- <table width="75%" border="0" cellpadding="0" cellspacing="1" bgcolor="#7b7b84">
- <tr bgcolor="#8bbcc7">
- <td height="33"><div align="center"><strong>用户id</strong></div></td>
- <td><div align="center"><strong>用户名称</strong></div></td>
- <td><div align="center"><strong>来自城市</strong></div></td>
- <td><div align="center"><strong>注册时间</strong></div></td>
- <td><div align="center"><strong>操作</strong></div></td>
- </tr>
- <?php
- if($num = mysql_num_rows($result))
- {
- while($row = mysql_fetch_array($result,mysql_assoc))
- {
- ?>
- <tr bgcolor="#ffffff">
- <td height="22" align="right"><?php echo $row['id']; ?> </td>
- <td height="22"> <?php echo $row['name']; ?> </td>
- <td height="22"> <?php echo $row['city']; ?> </td>
- <td height="22"> <?php echo $row['created_time']; ?> </td>
- <td height="22"> <a onclick="javascript:if(confirm('确定要删除用户信息吗?')) return true; else return false;" href="13-13.php?id=<?php echo $row['id']; ?>">删除</a> </td>
- </tr>
- <?php
- }
- }
- mysql_close($conn);
- ?>
- </table>
- </body>
- </center>
- </html>
- <?php
- if(!isset($_get['id']))
- {
- echo '参数错误!';
- exit;
- }
- $id = $_get['id'];
- if(emptyempty($id))
- {
- echo '用户id不能为空!';
- exit;
- }
- $host = 'localhost';
- $user_name = 'root';
- $password = 'admin';
- $conn = mysql_connect($host,$user_name,$password);
- if(!$conn)
- {
- die('数据库连接失败:'.mysql_error());
- }
- mysql_select_db('test');
- //先判断是否存在该id的用户
- $sql = "select * from users where id=$id";
- $result = mysql_query($sql) or die("<br/>error: <b>".mysql_error()."</b><br/>sql:".$sql);
- if(!mysql_num_rows($result))
- {
- echo '用户id错误!';
- exit;
- }
- //删除用户数据//开源代码phpfensi.com
- $sql = "delete from users where id=$id";
- mysql_query($sql) or die("<br/>error: <b>".mysql_error()."</b><br/>sql:".$sql);
- mysql_close($conn);
- echo '数据删除成功,返回<a href="13-12.php">13-12.php</a>查看数据';
Tags: php mysql 删除记录
- 上一篇:php 验证用户名重复
- 下一篇:php获取客户端ip地址
相关文章
- ·PHP 是什么?(2013-11-12)
- ·Php.ini文件位置在哪里 Php.ini文件找不到(2013-11-12)
- ·PHP 数据类型(2013-11-12)
- ·php 获取当前脚本的url(2013-11-12)
- ·php技术生成静态页面的实现(2013-11-13)
- ·缺陷月项目启动 披露PHP脚本语言漏洞(2013-11-13)
- ·在PHP中全面阻止SQL注入式攻击(2013-11-13)
- ·php生成随机密码的几种方法(2013-11-13)
- ·PHP中使用FCKeditor2.3.2配置(2013-11-13)
- ·如何使用PHP开发高效的WEB系统(2013-11-13)
- ·php:树形结构的算法(2013-11-13)
- ·php4和php5区别(2013-11-13)
- ·php数据库连接(2013-11-13)
- ·如何正确理解PHP的错误信息(2013-11-13)
- ·php页面漏洞分析及相关问题解决(2013-11-13)
- ·当在连接PHP时,抱怨一些数值没有定义参考?(2013-11-27)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)