-1
if(!empty($this->input->post())){
   Var_dump($this->input-post());
}

this shows me Fatal Error

Fatal error: Can't use method return value in write context in D:\install\wamp\www\CI\application\controllers\user\user.php on line 39

I don't understand why this is happening. In the CodeIgniter in controller file I have written this

Cœur
  • 37,241
  • 25
  • 195
  • 267
Manoj Kumar
  • 9
  • 1
  • 1
  • 7

1 Answers1

1

change this

if(!empty($this->input->post())){
   Var_dump($this->input-post());
}

to

if($this->input->post()){
   var_dump($this->input-post());
}
itsme
  • 48,972
  • 96
  • 224
  • 345