vote up 2 vote down star
1

I know that codeIgniter turns off GET parameters by default.

But by having everything done in POST, don't you get annoyed by the re-send data requests if ever you press back after a form submission?

It annoys me, but I'm not sure if I want to allow GET purely for this reason.

Is it such a big security issue to allow GET parameters too?

flag

6 Answers

vote up 3 vote down check

When I first started working with CodeIgniter, not using GET really threw me off as well. But then I realized that you can simulate GET parameters by manipulating the URI using the built-in URI Class. It's fantastic and it makes your URLs look better.

Or if you really need GETs working you can put this into your controller:

parse_str($_SERVER['QUERY_STRING'], $_GET);

Which will put the variables back into the GET array.

link|flag
yes - with the way CodeIgniter handles URLs by default, the extra segments in the URI act as parameters to your controller methods. – Steven Oxley Dec 8 '08 at 11:40
vote up 1 vote down

"don't you get annoyed by the re-send data requests if ever you press back after a form submission"

you can get around this by doing a redirect from the page that processes your form submission to the success page. the last "action" was the loading of the success page, not the form submission, which means if users do an F5 it will just reload that page and not submit the form again.

link|flag
Excellent, thanks! I have since found this out, but yes, it is a good tip. – Jon Winstanley Aug 13 at 14:36
vote up 0 vote down

even easier:

curl -X POST -d "param=value&param2=value" http://example.com/form.cgi

that plugin's pretty cool though.

link|flag
vote up 0 vote down

allesklar: That is slightly misleading, as scripts and bots can POST data nearly as easily as sending a normal request. It's not a secret, it's part of HTTP.

link|flag
vote up -3 vote down

Yes it is a big security issue. You should not enable Get for forms.

Furthermore using 'post' prevents search engine bots and other bots, both benevolent and malevolent, to submit your forms.

Other programs such as those fetching pages linked to a page to cache them to the browser to save time will activate these form links if they are cached.

The rule is to use 'get' when you get information from the database and 'post' every time you change the data or modify the 'state' of data or software in any way.

link|flag
Using POST doesn't prevent bots from submitting your form, it doesn't matter for them either way because I have a ton that have submitted forms using post, so much so that I had to put a CAPTCHA on my contact form. – Nick Berardi Dec 3 '08 at 14:31
Not true; in fact POSTing to forms is trivially easy: addons.mozilla.org/en-US/firefox/… – Noah Jul 24 at 15:01
vote up 0 vote down

GET parameters are cached by the web browser, POST is not. So with a POST you don't have to worry about caching, so that is why it is usually prefered.

link|flag
But if you need GET you need GET, what about bookmarkeable links, feeds and the like? – lbolognini Apr 6 at 13:30
Those are all fine, but you have to understand that the browser may cache those GET requests if the proper headers aren't added. – Nick Berardi Apr 7 at 0:24
1  
IMO, the absence of GET is one of CI's biggest flaws. GET is a core aspect of HTTP and should be used accordingly. Caching is a good thing! – pbreitenbach Jul 4 at 0:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.