0

我有 1 个名为 tbl_sales 的表。tbl_sales 中的 ff 数据是

编号 | 总计|

1 | 100 |

我的问题是这个。我想通过将“总计”乘以文本框中的任何值来更新“总计”。这是我到目前为止显示文本框的代码。我回应它,​​这样每次我添加订单时,它都会出现在每个表格行上

echo '<td>'.$vats_tot.'</td>';  //- the value display in this row is from database.
echo 'input type = "text" name = "ds"/>; 

我的问题是这个。我想将此文本框中的值乘以来自数据库值的“$vats_tot”。可以乘以这个吗?

4

2 回答 2

0

试试喜欢

$txt_val = $_POST['ds'];
$sql = "UPDATE tbl_sales SET total = total * $txt_val"; 
于 2013-08-29T04:44:30.017 回答
0

sql查询你的问题

$textbox_value=$_post['textbox_id'];//To get TextBox Value

update **[table_name]** set total=(total*$textbox_value) where id=1;//To update the data into the table 
于 2013-08-29T05:16:10.780 回答