3

大家好,我想用分页创建问题和答案,单击下一步按钮后,第一页应该验证并存储在数据库中,然后转到下一页?我尝试了一些代码,但我不知道如何发布值并通过分页存储到数据库中。

我的代码是

<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>";

我如何将问题值存储在数据库中。

请帮忙

4

1 回答 1

1

如果您使用 PHP,您可以在更新 mysql 数据库后添加以下内容以将用户重定向到下一页:

header("Location: $nextlnk");

然后,您所需要的只是一个显示“下一步”的提交按钮,该按钮将发布答案并推动用户前进到下一个问题。

于 2013-04-02T07:18:48.000 回答