问题:如何在 PHP 更新表单中显示选中的复选框? postgres sql

我必须显示一个选中的复选框(就像这个),但目前从数据库中提取值时(它显示这个)

从数据库中提取已知值时有没有办法显示选中的复选框(PgAdmin)(所有代码都是 HTML、CSS 或 PHP)

代码:这是表数据

 Topings: <br>
 <br>
 <label class="checkbox-container">
   <input type="checkbox" name="toping" <?php if(isset($_POST['toping']) && $_POST['toping']=="Vanilla") echo "checked" ?> value="<?php echo $row['toping']; ?>">
   <span class="checkmark"></span>
   <span class="checkbox-txt"> Vanilla</span>
   <br /></br>
 </label>
 <label class="checkbox-container">
   <input type="checkbox" name="toping" <?php if(isset($_POST['toping']) && $_POST['toping']=="Chocolate") echo "checked" ?>value="<?php echo $row['toping']; ?>">
   <span class="checkmark"></span>
   <span class="checkbox-txt">Chocolate</span>
   <br /></br>
 </label>
 <label class="checkbox-container">
   <input type="checkbox" name="toping" <?php if(isset($_POST['toping']) && $_POST['toping']=="Caramel") echo "checked" ?>value="<?php echo $row['toping']; ?>">
   <span class="checkmark"></span>
   <span class="checkbox-txt">Caramel</span>
   <br /></br>
 </label>
 <label class="checkbox-container">
   <input type="checkbox" name="toping" <?php if(isset($_POST['toping']) && $_POST['toping']=="Strawberry") echo "checked" ?>value="<?php echo $row['toping']; ?>">
   <span class="checkmark"></span>
   <span class="checkbox-txt">Strawberry</span>
   <br /></br>
 </label>
 <label class="checkbox-container">
   <input type="checkbox" name="toping" <?php if(isset($_POST['toping']) && $_POST['toping']=="M&M's") echo "checked" ?>value="<?php echo $row['toping']; ?>">
   <span class="checkmark"></span>
   <span class="checkbox-txt">M&M's</span>
   <br /></br>
 </label>
 <label class="checkbox-container">
   <input type="checkbox" name="toping" <?php if(isset($_POST['toping']) && $_POST['toping']=="Oreo") echo "checked" ?>value="<?php echo $row['toping']; ?>">
   <span class="checkmark"></span>
   <span class="checkbox-txt">Oreo</span>
   <br /></br>
 </label>
 <label class="checkbox-container">
   <input type="checkbox" name="toping" <?php if(isset($_POST['toping']) && $_POST['toping']=="Meringue") echo "checked" ?>value="<?php echo $row['toping']; ?>">
   <span class="checkmark "></span>
   <span class="checkbox-txt">Meringue</span>
   <br />
 </label>

解答

首先,您必须知道如何将多个复选框值存储到数据库。如果您需要,我已添加参考。

假设您的toppings像这样保存为逗号分隔值:

逗号分隔的浇头

  1. 您可以使用explode()函数将逗号分隔值分解为平坦的索引数组

Chocolate,Caramel,M&M's["Chocolate", "Caramel", "M&M's"]

  1. 然后你可以使用in_array()函数来检查 item(topping) 是否available or not in array

PHP

/* Connection with PDO */
// DB details (Change it to your DB details)
$host = '127.0.0.1';
$user = 'root';
$password = 'root';
$dbname = 'test';
$port = '3306';

// DataSourceName for MySQL (The one I used for testing)
$dsn = "mysql:dbname=$dbname;host=$host;port=$port";
// DataSourceName for PostgreSQL (Use this and add port if you need)
$dsn = 'pgsql:dbname=$dbname;host=$host;';

$pdo = new PDO($dsn, $user, $password);
/* End Connection String */

// Get Toppings Value From DB
$statement = $pdo->query("SELECT `toppings` FROM toppings");
$res = $statement->fetch();

//res[0] = Comma Separated String of Toppings: 'Topping1,Topping2,Topping3'
$toppings = explode(',', $res[0]);
// $toppings = Array of toppings checked: ["Topping1", "Topping2", "Topping3" ]


/* Connection with PG */
$db = pg_connect("host=localhost port=5432 dbname=SRIS user=postgres password=password");
$result = pg_query($db, "SELECT * FROM tablename ");
$row = pg_fetch_assoc($result);

$toppings = explode(',', $row['toppings']);

HTML 表格

<label class="checkbox-container">
  <input type="checkbox" name="toping[]" <?=(in_array('Vanilla',$toppings) ? 'checked="checked"' : '')?> value="Vanilla">
  <span class="checkmark"></span>
  <span class="checkbox-txt"> Vanilla</span><br/></br>
</label>
<label class="checkbox-container">
    <input type="checkbox" name="toping[]" <?=(in_array('Chocolate',$toppings) ? 'checked="checked"' : '')?> value="Chocolate">
    <span class="checkmark"></span>
    <span class="checkbox-txt">Chocolate</span><br/></br>
</label>
<label class="checkbox-container">
    <input type="checkbox" name="toping[]" <?=(in_array('Caramel',$toppings) ? 'checked="checked"' : '')?> value="Caramel">
    <span class="checkmark"></span>
    <span class="checkbox-txt">Caramel</span><br/></br>
</label>
<label class="checkbox-container">
    <input type="checkbox" name="toping[]" <?=(in_array('Strawberry',$toppings) ? 'checked="checked"' : '')?> value="Strawberry">
    <span class="checkmark"></span>
    <span class="checkbox-txt">Strawberry</span><br/></br>
</label>
<label class="checkbox-container">
    <input type="checkbox" name="toping[]" <?=(in_array("M&M's",$toppings) ? 'checked="checked"' : '')?> value="M&M's">
    <span class="checkmark"></span>
    <span class="checkbox-txt">M&M's</span><br/></br>
</label>
<label class="checkbox-container">
    <input type="checkbox" name="toping[]" <?=(in_array('Oreo',$toppings) ? 'checked="checked"' : '')?> value="Oreo">
    <span class="checkmark"></span>
    <span class="checkbox-txt">Oreo</span><br/></br>
</label>
<label class="checkbox-container">
    <input type="checkbox" name="toping[]" <?=(in_array('Meringue',$toppings) ? 'checked="checked"' : '')?> value="Meringue">
    <span class="checkmark "></span>
    <span class="checkbox-txt">Meringue</span><br/>
</label>

笔记:

  • 我已经将name属性更改为name=topping[],你应该使用field name array

  • 我还更改了 value 属性,为每个复选框提供了一个 predetermed value

参考:

  • Explode :逗号分隔的字符串变成数组?

  • <?=:'<?u003d' 在 PHP 中是什么意思

  • 将复选框值存储到数据库的示例:如何将多个复选框值插入数据库

Logo

PostgreSQL社区为您提供最前沿的新闻资讯和知识内容

更多推荐