我在PHP中有一个多页面表单。我还创建了一个登录页面,其中用户名和密码存储在会话中(我使用this tutorial)。现在,我对这些事情感到有些困惑:
我想让用户填写上次保存的会话中的表格(例如,如果计算机或浏览器崩溃,互联网连接失败等,他将不会重写他之前插入的所有数据)
另外,我不确定如何在Mysql表中存储每个用户插入的数据。如果我只是将所有用户的答案插入一个表(让我们说“答案”),这些字段是否可以:Unique_Id,UserId,问题1,问题2,......)?或者,最好将每个表中的数据插入到具有相同设计的单独表中,例如,表1:(userId,q1,q2,..,q5),表2:(userId,q6,q7, ..q10)等等。
这是其中一个表单页面的代码(第2页,其他页面类似)
<?php
session_start();
// Checking first page values for empty,If it finds any blank field then redirected to first page.
if (isset($_POST['submit1'])){
if (empty($_POST['q1'])
|| empty($_POST['q2'])
|| empty($_POST['q5'])
|| empty($_POST['q6'])){
// Setting error message
$_SESSION['error'] = "Mandatory field(s) are missing, Please fill it again";
header("location: page1.php"); // Redirecting to first page
} else {
foreach ($_POST as $key => $value) {
if (is_array($_POST[$key])){
$_SESSION['post'][$key] = implode(',', $_POST[$key]);
}
else{
$_SESSION['post'][$key] = $value;
}
}
}
} else {
if (empty($_SESSION['error_page2'])) {
header("location: page1.php");// Redirecting to first page.
}
}
?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css" media=screen>
<style>
.error {
color: #FF0000;
}
</style>
</head>
<body>
<div id="show">
<span id="error">
<!---Initializing Session for errors-->
<?php
if (!empty($_SESSION['error_page2'])) {
echo $_SESSION['error_page2'];
unset($_SESSION['error_page2']);
}
?>
</span>
<form id="form2" action="page3.php" method="post">
<div class="meter"><span style="width: 40%">Step 2</span></div>
<fieldset id = "Form_Questions">
<fieldset id = "q8"> <legend class="Q8"></legend>
<label class="question"> What are your favourite genres of movies?<span>*</span></label>
<div class="fieldset content">
<style type="text/css">
.checkbox-grid li {
display: block;
float: left;
width: 25%;
margin-bottom:5px;
}
</style>
<title>Survey Form</title>
<meta http-equiv="content-Type" content="text/html: charset=UTF-8" /
<ul class="checkbox-grid">
<li><input type="checkbox" name="q8[]" value="Action"><label for="checkgenre[]">Action</label><span></span></li>
<li><input type="checkbox" name="q8[]" value="Adventure"><label for="checkgenre[]">Adventure</label></li>
<li><input type="checkbox" name="q8[]" value="Comedy"><label for="checkgenre[]">Comedy</label></li>
<li><input type="checkbox" name="q8[]" value="Animation"><label for="checkgenre[]">Animation</label></li>
<li><input type="checkbox" name="q8[]" value="Drama"><label for="checkgenre[]">Drama</label></li>
</ul>
</div>
</fieldset>
//REST OF QUESTIONS
.....
....
<input class="mainForm" type="submit" name="continue" value="Save and Continue" />
</form>
答案 0 :(得分:0)
如果您想从之前的访问中提取问题的答案,那么只需要对数据库执行SELECT查询以确定他们输入了什么,或者如果他们之前没有输入答案则留空。 / p>
通过将所有内容存储在会话中无法确定您的意思,但如果您希望最后一次保存所有答案,则最好将答案存储在Cookie中。
要使您的网页动态化,您可以将所有问题和答案存储在数据库中。你可以使用像......这样的布局。
Table name: 'Questions'
ID int (autonumber)
Question text
Table name: 'Answers'
ID int (autonumber)
QuestionID int
Answer varchar(250)
Table name: 'UsersAnswers'
ID int (autonumber)
UserID int
AnswerID int
(假设您的所有问题都是多项选择答案)
执行此操作可以让您根据需要添加任意数量的问题,而无需向表中添加额外的列。
修改... 强>
如果您想要动态答案,那么您可以将答案存储在表格中,例如......
Table name: 'UsersAnswers'
ID int (autonumber)
UserID int
QuestionID int
Answer string
此表格允许您存储用户回答的问题的答案。