donjd86266 2014-07-25 10:28
浏览 57
已采纳

如何使用PHP PDO将未知数量的字段作为行插入

I have a form that looks like this:

  1. <form>
  2. <textarea name="text1"></textarea>
  3. <textarea name="text2"></textarea>
  4. <textarea name="text3"></textarea>
  5. </form>

However, the number of textareas is determined dynamically so there will not always be just 3.

I want to insert the $_POST of each textarea into a different row with PDO. If they were all going in the same row, I would just use this:

  1. $query = $db->prepare("INSERT INTO responses (text1, text2, text3) VALUES (:text1, :text2, :text3)");
  2. $query->bindValue('text1', $_POST['text1'], PDO::PARAM_STR);
  3. $query->bindValue('text2', $_POST['text2'], PDO::PARAM_STR);
  4. $query->bindValue('text3', $_POST['text3'], PDO::PARAM_STR);
  5. $query->execute();

Although the issue of a changing number of textareas is not addressed by that either.. I was considering using count($_POST) and iterating with a for loop?

How can I go about inserting an unknown number of fields into there own row with PDO?

  • 写回答

1条回答 默认 最新

  • dongxue163536 2014-07-25 10:31
    关注

    Change your HTML to send it as an array:

    1. <textarea name="text[]"></textarea>
    2. <textarea name="text[]"></textarea>
    3. <textarea name="text[]"></textarea>

    Then you can just loop over the array $_POST['text']

    You could probably even do:

    1. $params = array_fill(0, count($_POST['text']), '(?)');
    2. $db->prepare("INSERT INTO responses (text) VALUES " . implode(", ", $params));
    3. $query->execute($_POST['text']);
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部