简体   繁体   English

如何在PHP的数据库mysqli表中选择复选框

[英]How to select checkbox in database mysqli table in PHP

**How to select checkbox in database mysqli what should i write in checkbox value please kindly help i also implode function which convert array to string did not find values for checkbox values to print. **如何在数据库mysqli中选择复选框,我应该在复选框值中写些什么,请帮助我也内爆将数组转换为字符串的函数,但找不到要打印的复选框值的函数。 ..... Also check the output on PICTURE... ** .....还要检查图片上的输出... **

OUTPUT PIC 输出图片

        <?php
        while($fetch=mysqli_fetch_array($select))
        {
         ?>

        <tr>
        <td><?php echo $fetch["tableno"]?></td>
        <td><?php echo $fetch["customerid"]?></td>
        <td><?php echo $fetch["item"]?></td>
        <td><?php echo $fetch["money"]?></td>
        <td><a href="javascript:del_tableno(<?php echo $fetch["tableno"];?>)"><button>Delete</button></a></td>
        <td><a href="update.php?tableno=<?php echo $fetch["tableno"]; ?>"/><button>Update</button></td>

        <td><form method="POST">
            <input type="checkbox" name="chk[]" value="???">
            <input type="submit" name="sub1" value="Button for Checkbox">

            </td> </form>
        </tr>

        <?php

        }?>


    </table>

        <p style="font-size:30px">The Customer has TO Selected these Items from Menu List
    and therefore submitted to<br> Kitchener to Make the Food and
    then waiter will serve the Food to Customer.</p>
        </body>

    </html>
    <?php
     if(isset($_POST['sub1']))
      {
      $chk=implode(',', $_POST['chk']);
       echo "<br>Customer has  selected the following checkbox Item to be Prepared and Eat the Food:<br/>";

        echo "<br/>".$chk."<br><br/><br/><br/><br/>";

          }  

          ?>

Try this: 尝试这个:

In you form, method to insert multiple checkboxes 在您的表单中,插入多个复选框的方法

<form method="POST" action="test2.php">
        <input type="checkbox" name="chk[]" value="InputText1">InputText1<br>
        <input type="checkbox" name="chk[]" value="InputText2">InputText2<br>
        <input type="submit" name="sub1">
</form>


if(isset($_POST['sub1'])) // check the submitted form and print the values
   {
     echo "You selected the following checkbox:<br/>";
     foreach ($_POST['chk'] as $value) {
      echo $value."<br>";
    }

One method is the value of a checkbox can be concatenated with all data and after submitting, check for selected check boxes with for each loop and print all the selected rows. 一种方法是将复选框的值与所有数据连接起来,并在提交后,为每个循环检查选中的复选框,并打印所有选中的行。 Like below 像下面

<input type="checkbox" name="chk[]" value="<?php echo "<td>".$fetch["tableno"]."</td><td>".$fetch["customerid"]."</td><td>".$fetch["item"]."</td><td>".$fetch["money"]."</td>"; ?>">

And after posting use this : 在发布后使​​用此:

if(isset($_POST['sub1'])) // check the submitted form and print the values
   {
     echo "Below Customers have placed orders:<br/>";
     echo "<table>";
     foreach ($_POST['chk'] as $value) {
      echo "<tr>".$value."</tr>";
    }
    echo "</table>";

}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM