一个提交按钮循环每个动态添加的textarea并且每行只插入一个textarea

时间:2015-03-19 00:50:47

标签: javascript php jquery html mysql

我有一个表单,用户可以在提交到mysql数据库之前添加多个textareas来构建表单。

我需要在questions_table中为每个问题添加一个新行。 这是关键:1表单触发多个插入查询。每个问题textarea一个。

以下是一个表行的最小示例:

Here is a minimal example of the table:

下面未列出的表单中还有其他隐藏字段,如id,user,ordering等等......但我每行只能有一个问题列。

我想使用表单提交按钮循环遍历每个问题textarea并在每行插入一个问题。这样做的最佳方法是什么?

    <form action="index.php?event=submit" id="form1">
<textarea rows="4" cols="30" name="question" form="form1">Enter text</textarea>
<textarea rows="4" cols="30" name="question" form="form1">Enter text</textarea>
<textarea rows="4" cols="30" name="question" form="form1">Enter text</textarea>
<textarea rows="4" cols="30" name="question" form="form1">Enter text</textarea>
      <input type="submit">
    </form>

0 个答案:

没有答案