我有一个页面,它接收在前一页输入的数据并将该数据输入数据库。然后它获取该帖子的数据库ID。我想在标题中使用此id($ id),但是当我运行以下代码时,get变量为空。
CODE:
<?php header("Location: http://localhost/biology/question.php?q=$id"); ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<?php
include '../connect.php';
if (isset($_POST['questionSubmit'])){
$question=mysql_real_escape_string($_POST['question']);
$detail=mysql_real_escape_string($_POST['detail']);
$date=date("d M Y");
$time=time();
$user=$_SESSION['id'];
$put=mysql_query("INSERT INTO questions VALUES ('','$question','$detail','$date','$time','$user','biology','0')");
$id=mysql_insert_id();
}
?>
</body>
</html>
答案 0 :(得分:3)
直到最后,你才定义$id
。
如果您想在代码中使用header()
,请将ob_start()
放在开头。