
<td><a href="update.php? id=<?php echo $result["id"];?>">编辑</a></td>中的id 提示Undefined index
list.php中用了<td><ahref="update.php?id=<?phpecho$result["id"];?>">编辑</a></td>,在update中用...
list.php中用了<td><a href="update.php? id=<?php echo $result["id"];?>">编辑</a></td>,
在update中用
7 f($_POST['id'] != "")
8 {
9 $id=$_POST['id'];
10 $c=mysql_connect("localhost","root");
11 $select=mysql_select_db("1_DB",$c);
12 $str="select * from productions where id=".$id;
13 $arr=mysql_query($str);
14 $result=mysql_fetch_array($arr);
为什么点击编辑后出现Notice: Undefined index: id in F:\xampp\htdocs\1_DB\productions\update.php on line 7 展开
在update中用
7 f($_POST['id'] != "")
8 {
9 $id=$_POST['id'];
10 $c=mysql_connect("localhost","root");
11 $select=mysql_select_db("1_DB",$c);
12 $str="select * from productions where id=".$id;
13 $arr=mysql_query($str);
14 $result=mysql_fetch_array($arr);
为什么点击编辑后出现Notice: Undefined index: id in F:\xampp\htdocs\1_DB\productions\update.php on line 7 展开
1个回答
展开全部
if($_POST['id'] != "")
// 改成
if(isset($_POST['id']) && $_POST['id']!='')
//因为当表单没提交或表单中没id参数时,$_POST['id']是不存在的,所以会爆错
//所以使用$_POST['id']前可以检测下变量是否存在,然后再使用它
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |