0

我正在尝试创建一个页面,其中有多个字段,用户可以对每个字段进行评论。为了创建这些字段和文本输入,我正在运行一个 while 循环,其中包含以下 html:

<form name = "replyform" method = "post" action = "">           
<input id = "replytext<? echo $replyID; ?>" value = "replytext<? echo $replyID; ?>" name     = "replytext<? echo $replyID; ?>" type="text" class = "span5">
</form>

然后使用以下代码调用 'wall_reply()' 函数,提交文本值。

if (isset($_POST['replytext'.$replyID])) {
echo wall_reply();//5, $_POST['replytext'.$replyID]);
}

不过有些事情是错过了。任何想法这里可能有什么问题?

4

2 回答 2

0

你有循环来创建这些表单和输入吗?

将循环放在表单标签内,这样只会创建一个带有多个输入的表单。

于 2013-01-07T03:01:27.447 回答
0

这似乎工作正常,将其用作您的指南;)

<?php 
$maxposts=7;

if (isset($_POST['submit'])){

function wall_reply($id,$text){
echo '<hr />updating id '.$id.' with '.$text;
}

var_dump($_POST);
for ($i=0;$i<$maxposts;$i++){
$replyID = $i;
        if (isset($_POST['replytext'.$replyID])) {
                 wall_reply($i,$_POST['replytext'.$replyID]);//5, $_POST['replytext'.$replyID]);
        } else {
                echo 'not set';
        }
}
}

?>
<form name = "replyform" method = "post" action = "">           
<?php 
$replyID = 5;
for ($i=0;$i<$maxposts;$i++):
$replyID = $i;
?>
<input id = "replytext<?php echo $replyID; ?>" value = "replytext<?php echo $replyID; ?>" name     = "$
<?php endfor; ?>
<input type="submit" name="submit" value="go"/>
</form>
于 2013-03-08T13:16:13.693 回答