我需要在更新后返回页面ID。我该如何取回身份证。
<?php
include '/dbconn.php';
$title= mysql_real_escape_string($_REQUEST['title']);
$body= mysql_real_escape_string($_REQUEST['body']);
$ID= mysql_real_escape_string($_REQUEST['save']);
$sql="UPDATE itemDB SET title='$title', body='$body' WHERE ID='$ID'";
mysql_query($sql) or die(mysql_error());
// Is where I need your help
// I tried this echo ID; but it's still not working
header('location:././lookup.php?ItemID=$ID');
?>
错误讯息:
解析错误:语法错误,意外&#39;回声&#39; (T_ECHO)在第10行的C:\ xampp \ htdocs \ saving.php
答案 0 :(得分:0)
您必须使用双引号(&#34;),否则$ ID将被替换。另外,././
作为一条路径对我来说并没有多大意义。
尝试使用header("Location: lookup.php?ItemID=$ID");
(如果它在同一目录中)