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

Instead of trying this one

PHP Code:
if($this->form_validation->run() == FALSE)
 
          {
 
              $this->listProperty();
 
          }
 
          else
 
          


can you please try : 

PHP Code:
if($this->form_validation->run())
 
          {
 
              //the working result comes here
 
          }
 
          else {
 
$this->listProperty();} 
Reply


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



Theme © iAndrew 2016 - Forum software by © MyBB