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

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

I have a form that looks like this:

<form>
<textarea name="text1"></textarea>
<textarea name="text2"></textarea>
<textarea name="text3"></textarea>
</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:

$query = $db->prepare("INSERT INTO responses (text1, text2, text3) VALUES (:text1, :text2, :text3)");
$query->bindValue('text1', $_POST['text1'], PDO::PARAM_STR);
$query->bindValue('text2', $_POST['text2'], PDO::PARAM_STR);
$query->bindValue('text3', $_POST['text3'], PDO::PARAM_STR);
$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 18:31
    关注

    Change your HTML to send it as an array:

    <textarea name="text[]"></textarea>
    <textarea name="text[]"></textarea>
    <textarea name="text[]"></textarea>
    

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

    You could probably even do:

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

报告相同问题?

悬赏问题

  • ¥60 pb数据库修改或者求完整pb库存系统,需为pb自带数据库
  • ¥15 spss统计中二分类变量和有序变量的相关性分析可以用kendall相关分析吗?
  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路