我正在尝试创建一个页面,其中有多个字段,用户可以对每个字段进行评论。为了创建这些字段和文本输入,我正在运行一个 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]);
}
不过有些事情是错过了。任何想法这里可能有什么问题?