根据单选按钮更新MySQL数据

时间:2018-11-27 05:53:24

标签: php mysql

我现在正面临挑战。

我有一个退货页面,如果我通过单选按钮选择了第一行,我想更改我的订单历史记录表中的 history_status ,从{{1 }}到"DONE"。我这样做的原因是运行查询以仅显示"RETURN PENDING" history_status 值。

下面是我正在使用的代码:

"DONE"

Order History Table

Return page layout

1 个答案:

答案 0 :(得分:0)

根据您的代码 $ history_id = $ _POST ['selectitemradio'];我假设您从该页面获取历史记录ID。

因此,您可以在where子句中使用history_id。现在,只有选定的行将被更新。

  

UPDATE orderhistory SET history_status ='RETURN PENDING'其中,history_id = $ history_id