Welcome Guest, Not a member yet? Register   Sign In
$_FILES Array getting empty when using $this->form_validation->run()
#17

What's the value and the type of the variable $inserted_id.
Chage your function into your model:

PHP Code:
function addNewProperty($propertyInfo)
 
     {
 
         $this->db->trans_start();
 
         $this->db->insert('tbl_properties'$propertyInfo);

 
         $insert_id $this->db->insert_id();

 
         $this->db->trans_complete();

 
         var_dump($insert_id);
die();
 
     
post the result
Reply


Messages In This Thread
RE: $_FILES Array getting empty when using $this->form_validation->run() - by hc-innov - 06-12-2019, 03:37 AM



Theme © iAndrew 2016 - Forum software by © MyBB