我想上傳圖像到我的服務器,它工作正常,我已經在圖像上加密名稱。codeigniter圖像上傳(獲取加密名稱)
但現在我想更新我的數據庫中的用戶表,以便我可以在用戶的個人資料上顯示圖像。
我的問題是,我無法找到如何在名爲「users」的數據庫表中插入加密的圖像名稱,用戶表中的毛氈字段是「profile_picture」。
我已經試過這
$profilBilledNavn = $this->upload->data('file_name');
$this->db->where('username', $this->input->post('username'));
$this->db->update('users', $profilBilledNavn);
,但它不工作。我究竟做錯了什麼?
嗨西蒙:檢查這個帖子http://stackoverflow.com/questions/25174176/get-file-name-after-configencrypt-name-using-codeigniter – 2016-10-18 10:52:09