-2
試圖存儲microtime,每次用戶根據當地時間格林尼治標準時間在數據庫中出價。嘗試下面的代碼,但它只是在數據庫中存儲爲0000-00-00 00:00:00。使用microtime存儲出價
函數來創建($ user_bid){
$this->db->set('bid', $user_bid);
$this->db->set('microtime',microtime(TRUE));
$query= $this->db->insert('products');
$this->load->view('bidding');
}}