• <small id='NNasd'></small><noframes id='NNasd'>

    1. <legend id='NNasd'><style id='NNasd'><dir id='NNasd'><q id='NNasd'></q></dir></style></legend>
    2. <tfoot id='NNasd'></tfoot>
      <i id='NNasd'><tr id='NNasd'><dt id='NNasd'><q id='NNasd'><span id='NNasd'><b id='NNasd'><form id='NNasd'><ins id='NNasd'></ins><ul id='NNasd'></ul><sub id='NNasd'></sub></form><legend id='NNasd'></legend><bdo id='NNasd'><pre id='NNasd'><center id='NNasd'></center></pre></bdo></b><th id='NNasd'></th></span></q></dt></tr></i><div id='NNasd'><tfoot id='NNasd'></tfoot><dl id='NNasd'><fieldset id='NNasd'></fieldset></dl></div>

        <bdo id='NNasd'></bdo><ul id='NNasd'></ul>

        使用 PDO 插入多行

        时间:2023-10-05
        • <i id='xU0tZ'><tr id='xU0tZ'><dt id='xU0tZ'><q id='xU0tZ'><span id='xU0tZ'><b id='xU0tZ'><form id='xU0tZ'><ins id='xU0tZ'></ins><ul id='xU0tZ'></ul><sub id='xU0tZ'></sub></form><legend id='xU0tZ'></legend><bdo id='xU0tZ'><pre id='xU0tZ'><center id='xU0tZ'></center></pre></bdo></b><th id='xU0tZ'></th></span></q></dt></tr></i><div id='xU0tZ'><tfoot id='xU0tZ'></tfoot><dl id='xU0tZ'><fieldset id='xU0tZ'></fieldset></dl></div>
          <tfoot id='xU0tZ'></tfoot>

          • <bdo id='xU0tZ'></bdo><ul id='xU0tZ'></ul>

              <tbody id='xU0tZ'></tbody>

              <legend id='xU0tZ'><style id='xU0tZ'><dir id='xU0tZ'><q id='xU0tZ'></q></dir></style></legend>

                <small id='xU0tZ'></small><noframes id='xU0tZ'>

                  本文介绍了使用 PDO 插入多行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我在

                  标签中有一个多复选框,如下所示:

                  I have a multicheckbox in a <form> tag like this:

                  <input type="checkbox" name="del[]" value="<?php echo $menuItems['id']; ?>">
                  

                  我使用此代码询问此表单:

                  I ask this form with this code:

                  if (isset($_POST['subgruppe'])) {
                          $ids = array();
                  
                      foreach ($_POST['del'] as $pval) {
                          $ids[] = (int) $pval;
                      }
                  
                      $ids = implode(',', $ids);
                      echo "groupids";
                      echo $ids;
                      echo "userid:";
                      echo $_POST['userid'];
                  

                  这向我展示了这样的结果:

                  This shows me a result like this:

                  groupids13,9...userid:5 
                  

                  我需要一个给我这样结​​果的语句:

                  I need a statment that give me a result like this:

                  INSERT INTO user_groups (usergroup, userid) VALUE (13,5),(9,5)
                  

                  ...你能给我一个提示我如何检查这个吗?我想我可以解决一个给我的解决方案:(13,5),(9,5)... 变成一个变量.

                  ... Can you give me a hint how i can check this? I think I can handel a solution that give me: (13,5),(9,5)... into a variable.

                  非常感谢:)

                  推荐答案

                  您不必为所有 INSERTS 构建单个字符串,只需在循环时插入即可.

                  You don't have to build a single string for all of your INSERTS simply insert while you are looping.

                  例如:

                  $sql = "INSERT INTO user_groups (usergroup, userid) VALUE (:usergroup, :userid)";
                  $stmt = $pdo->prepare($sql);
                  foreach ($_POST['del'] as $pval) {
                      $stmt->execute(array(':usergroup'=>(int) $pval, 
                                           ':userid'=>$_POST['userid']
                      ));
                  }
                  

                  这篇关于使用 PDO 插入多行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:PDO 未捕获异常 - 插入值列表与列列表不匹配 下一篇:PDO - 无效的参数号

                  相关文章

                  最新文章

                1. <small id='5iumW'></small><noframes id='5iumW'>

                  <legend id='5iumW'><style id='5iumW'><dir id='5iumW'><q id='5iumW'></q></dir></style></legend>

                    <tfoot id='5iumW'></tfoot>
                      <bdo id='5iumW'></bdo><ul id='5iumW'></ul>
                    1. <i id='5iumW'><tr id='5iumW'><dt id='5iumW'><q id='5iumW'><span id='5iumW'><b id='5iumW'><form id='5iumW'><ins id='5iumW'></ins><ul id='5iumW'></ul><sub id='5iumW'></sub></form><legend id='5iumW'></legend><bdo id='5iumW'><pre id='5iumW'><center id='5iumW'></center></pre></bdo></b><th id='5iumW'></th></span></q></dt></tr></i><div id='5iumW'><tfoot id='5iumW'></tfoot><dl id='5iumW'><fieldset id='5iumW'></fieldset></dl></div>