为了账号安全,请及时绑定邮箱和手机立即绑定

为什么根据表单内容修改数据库数据时总是出现参数错误呢?

为什么根据表单内容修改数据库数据时总是出现参数错误呢?

慕粉3463126 2016-08-21 22:13:38
以下是出现问题的代码:<?php$host="localhost";$user_name="root";$password="root";$arr_city=array('Beijing'=>'北京','NewYork'=>'纽约','Paris'=>'巴黎','London'=>'伦敦','Rome'=>'罗马');$conn=mysql_connect($host,$user_name,$password);if(!$conn){ die('数据库连接失败:'.mysql_error());}else{ echo '数据库连接成功!'."<br/>";}mysql_select_db('test');if(!isset($_GET['uid'])){ echo '参数错误!'; exit;}$id=$_GET['uid'];$sql="select * from users where id=$id";$result=mysql_query($sql) or die("<br/><b>ERROR:".mysql_error()."</b><br/><br/><br/>产生错误的SQL<br/>".$sql."<br/>");if(!mysql_num_rows($result)){ echo '用户ID错误!'; exit;}$row=mysql_fetch_array($result);$name=$_POST['user_name'];$city=$_POST['city'];if(!empty($name) || trim($name)!=' '){ $sql="update users set name='".$name."',city='".$city."' where id=$id"; mysql_query($sql) or die("<br/><b>ERROR:".mysql_error()."</b><br/><br/><br/>产生错误的SQL<br/>".$sql."<br/>"); mysql_close($conn); echo '数据修改成功,打开<a href="777.php">777.php</a>查看数据'; exit;}?><!DOCTYPE HTML><html> <head> <meta http-equiv="content-type" content="text/html;charset=gb2312" /> <title>13-11.php</title> </head> <body> <b>修改用户信息</b> <form name="form" method="POST" action="13-11.php?uid=<?php echo $id; ?>"> <table width="75%" border="0"  cellpadding="0" cellspacing="1"> <tr> <td width="24%" height="29">用户名:</td> <td width="76%"><input type="text" name="user_name" id="user_name" size="20" value="<?php echo $row['name']; ?>"></td> </tr> <tr> <td height="25">来自城市:</td> <td> <select name="city"> <?php foreach($arr_city as $k=>$v) { $option=($row['city']=$k) ? '<option value="'.$k.'"selected>'.$v.'</option>' : '<option value="'.$k.'">'.$v.'</option>'; echo $option.'\n'; } ?> </select> </td> </tr> <tr> <td>注册时间:</td> <td><?php echo $row['created_time']; ?></td> </tr> <tr> <td height="31"> <input type="submit" name="Submit" value="修改"> </td> <td>&nbsp;</td> </tr> </table> </form> </body></html>
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 2179 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信