大家好我想用分页创建问题和答案,点击下一个按钮后第一页应验证并存储在数据库中,并转到下一页?我尝试了一些代码,但我不知道如何发布值并使用分页存储到数据库中。
我的代码是
<form class="cmxform" id="form1" method="get" action="process.php" >
$newsquestion=$db->paging("SELECT * FROM question where classname='$_SESSION[class_name]' and category in (select category from cat where class_name='$_SESSION[class_name]' order by p_order) and status='1'",1);
foreach($newquestion as question)
{
$answer=$db->get_results("SELECT * FROM answer where qid='$question->id'");
foreach($newanswer as $answer)
{
<input type="radio" name='answer_value1[<?php echo $question->id?>]' value="<?php echo$answer->id?>" validate="required:true" />
}
Comment :<textarea rows="5" cols="50" name="comment[<?php echo $question->id?>]" validate="required:true'" ></textarea>
}
在分页栏中我放
$linktext.=" <a href='$nextlnk' title='Show Next ".$this->MaxRecord." Data'><input type='Submit' name='button' value='Submit' ></a>";
如何将问题值存储在数据库中。
请帮助
答案 0 :(得分:1)
如果你使用PHP,你可以在更新你的mysql数据库之后添加以下内容,将用户重定向到下一页:
header("Location: $nextlnk");
然后您需要的是一个提交按钮,上面写着“下一步”,它会发布答案并将用户推送到下一个问题。