如何获取动态textarea的值

时间:2013-05-17 13:16:45

标签: php textarea

我想通过他们的question_id或ans_id来获取一些ans的评论,但是文字是动态的,所以我很困惑如何获取完全ans的评论 查看我的textarea字段enter image description here

这里有70,66是ans_id 所以我想获取其ans_id为70或66的评论,在相同问题的位置, 这是我的评论表 enter image description here

我应用此代码获取每个textarea的注释值 echo $ loot =“select * from comment where answer_id ='$ ans_id'&& activation = 1”; $根=的mysql_query($赃物);

<?php
while($row=mysql_fetch_array($root))
{

?>
<h1><?php echo $row['comments']; ?></h1>
<?php
}
?>

得到这样的结果

enter image description here

它只为一个id获取一个值 我可能已经理解了我的问题...而且提前,任何建议都会高度回应......

1 个答案:

答案 0 :(得分:1)

以数组表示法命名文本区域。例子

<textarea name="ddd[90]" id="ddd" cols="45" rows="5"></textarea>

然后,您可以在提交时访问文本区域内容,如下所示。

  echo $_POST['ddd'][90];