为什么的我的传不过来ID的值
1:
require_once '../include.php';
$id=$_REQUEST['id'];
$rows=getCateById($id);
print_r($rows);
var_dump($id);
2:
if ($act=="editCate"){
$where="id={$id}";
$mes=editCate($where);
}
3:
function editCate($where){
$arr=$_POST;
if (update("imooc_cate", $arr,$where)){
$mes="分类修改成功<br/><a href='listCate.php'>查看分类</a>";
}else {
$mes="修改失败11111<br/><a href='listCate.php'>重新修改</a>";
}
return $mes;
}
点击1的按钮把1的act传给2, 2用3的function 1require_once '2和3'为什么在2的时候为var_dimp($id)就显示NULL了呢?