Hello,
Firstly, I m sorry about my English. I used ci 3.1.9 and today i see 3.1.10 relased version and i updated. but when i check my codes are working true, i find the following codes not work :
PHP Code:
if($this->input->method('post')){
...
}
else
redirect('404');
where i used this if statement doesn't work. when i debug :
PHP Code:
echo $this -> input -> method('post'); die();
result on display
GET
how can i fixed that? I don't wanna use the following code :
PHP Code:
if($this->input->post()){
...
}
else{
redirect('404')
Thank you for helping.