我对这个很感兴趣。我正在使用 Codeigniter 控制器。
我需要更新下面代码中“DATA HERE”所在的订单状态。
基本上这是我需要在名为“orders”的表中找到 $orderid 找到“status”并将其更新为文本“Paid”。
$orderid = $id;
if($this->input->post("status")=="OK" && $this->input->post("step")=="Confirmation" && $this->input->post("orderhash")==$orderHashOrg)
{
// DATA HERE
}
任何帮助是极大的赞赏。
这是我当前的代码
$updateData=array("status"=>"Paid");
if($this->input->post("status")=="OK" && $this->input->post("step")=="Confirmation" && $this->input->post("orderhash")==$orderHashOrg)
{
$d = $this->db->get('offers_orders');
$this->db->select('status');
$this->db->where('order_number', $id);
$orderdata = $d->result_array();
$this->db->update("offers_orders", $updateData);
}