在插入结束后,我可以将其定向到页面
$id = $_SESSION['hola'];
header("location:/page/home/action.php?itemid={'"$id"'}")
它一直在错误日志中说
语法错误,意外的'$ id'(T_VARIABLE),期望输入','或')'
缺少的东西
答案 0 :(得分:0)
此处使用的正确语法为:
header("Location: /page/home/action.php?itemid={$id}");
还请记住在调用header
函数之后的分号。