将表格单元格值转换为PHP帖子

时间:2013-07-26 05:30:49

标签: php html mysql html-table cell

我在调整从我设置的表中传递到$_POST的值时遇到问题。

以下是用于设置表格的代码:

print "<form action=\"updateitem.php\" method=\"post\">\n";
print "<table border cellpadding = 3>\n";
print "<tr>\n";
print "<th>Menu item id</th>\n";
print "<th>Menu item name</th>\n";
print "<th>Menu</th>\n";
print "<th>Menu item price</th>\n";
print "</tr>\n";
while($info = mysql_fetch_array($results)){
    $mi = explode("_",$info['meta_key']);
    if ($mi[2] == "food")
        $mi[2] = "takeout";
    print "<tr>\n";
    print "<td id=\"meta_id\">".$info['meta_id']."<input type=\"hidden\" name=\"meta_id".$i."\" value=\"".$info['meta_id']."\" /></td>\n";
    print "<td>".$info['post_title']."</td>\n";
    print "<td>".$mi[2]."</td>\n";
    print "<td id=\"price\" contenteditable=\"true\">".$info['meta_value']."<input type=\"hidden\" name=\"meta_value".$i."\" value=\"".$info['meta_value']."\" /></td>\n";
    print "</tr>\n";
    $i++;
}
print "</table>\n";     
print "<input type=\"Submit\" value=\"Update\" />\n";
print "</form>\n";

我想要做的是,当有人更改价格单元格时,我希望更新的价格在PHP的$_POST中传递。那可能吗?

1 个答案:

答案 0 :(得分:0)

contenteditable属性不会对您有所帮助。 你必须使用javascript来注意它何时被改变并用它做一些事情。

简单的答案是,您需要向用户提供<input>字段。因此,将type="hidden"更改为type="text"或添加另一个未隐藏供用户进行交互的字段,然后将值传递回$_POST中的脚本。

建议的更改

print "<form action=\"updateitem.php\" method=\"post\">\n";
print "<table border cellpadding = 3>\n";
print "<tr>\n";
print "<th>Menu item id</th>\n";
print "<th>Menu item name</th>\n";
print "<th>Menu</th>\n";
print "<th>Menu item price</th>\n";
print "</tr>\n";
while($info = mysql_fetch_array($results)){
    $mi = explode("_",$info['meta_key']);
    if ($mi[2] == "food")
        $mi[2] = "takeout";
    print "<tr>\n";
    print '<td id="meta_id">' . $info['meta_id'] . '<input type="hidden" name="meta_id[]" value="' . $info['meta_id'] . '" /></td>';
    print '<td>'.$info['post_title'].'</td>';
    print '<td>'.$mi[2].'</td>';
    print '<td id="price">';
        print '<input type="hidden" name="original_price[]" value="' . $info['meta_value'] . '" />';
        print '<input type="text" name="price[]" value="' . $info['meta_value'] . '" />';
    print '</td>';
    print "</tr>\n";
    $i++;
}
print "</table>\n";     
print "<input type=\"Submit\" value=\"Update\" />\n";
print "</form>\n";

我冒昧地更改名称(name="name[]")以使用数组而不是(name="name" . $i

这会将字段作为数组返回到$ _POST数组中 所以$_POST[price] will itself be an array喜欢这样:

$_POST['price][0]
$_POST['price][1]   // and so on

因此您可以将更改后的价格处理为

foreach ( $_POST['price'] as $i => $price ) {
    if ( $price != $_POST['original_price'][$i]) {
        // We have a price change lets update the database
        // using $_POST['meta_id'][$i] as the key to the database table ? I assume ??
    }

}