尝试使用PHP复选框来保存MySQL表中的数据

时间:2012-11-29 19:45:54

标签: php mysql database checkbox

我必须为作业进行基于网络的结帐并遇到问题,我已导入数据库并在表格中设置数据,并在其旁边添加了复选框。我需要使用会话将参考号(首先存储在数组中)放到另一个页面上。从使用var_dump我似乎无法从表中选择任何东西。 代码:

按钮代码

<p><tr>
<input type="submit" name="Select" id="Select" value="Add Selected To Cart"/>  
</tr></p>

访问数据库代码(为安全而更改的值)

<?php
Accesses database
$con=pg_connect("host=hostname port=portnumbers
    dbname=name user=user password=password");
    if (!$con)
    {
        die('Could not connect to database');
    }
?>

数据库显示     

//Creates table
echo "<table border='1'>\n<thead>\n<tr>\n";
echo "<th>Title</th>
<th>Platform</th>
<th>Description</th>
<th>Price</th>
<th>Buy</th>\n";

while($row = pg_fetch_array($res)){
echo"<tr>";
echo "<td>" . $row['1'] . "</td>";
echo "<td>" . $row['2'] . "</td>";
echo "<td>" . $row['3'] . "</td>";
echo "<td>" . $row['4'] . "</td>";
echo '<td><input type="checkbox" name="selected[]" value="' . $row['0'] .  '" /></td>';      
  echo"</tr>";    
  }

echo"</table>";
?>

1 个答案:

答案 0 :(得分:1)

嗯,我认为你可以跟随,因为你正在努力改进购物车:

//Use the `$_SESSION` var to hold the values
foreach ($_POST['selected'] as $item)
    $_SESSION['cart'][$item] = $item; 

每次执行提交时,项目的ID都将被编入索引:

  • 如果该项目存在,将被替换
  • 如果该项目不存在,将添加

要删除项目,您应使用“查看购物车”页面,然后显示项目:

foreach ($_SESSION['cart'] as $item)
    echo '<a href="delete-item?id=' . $item . '">' . $item . '</a>';