Welcome Guest, Not a member yet? Register   Sign In
Updated 3.1.10 this->input->method('post') doesn't work
#1

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.
Reply
#2

PHP Code:
// TRUE or FALSE for upper or lower case ( POST or post )
if($this->input->method(TRUE))
{
 
   ...
}
else
{
 
   redirect('404');


Try that.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB