On Tue, Jun 14, 2011 at 2:03 PM, Kenneth Gonsalves <[email protected]> wrote: > On Tue, 2011-06-14 at 08:51 -0400, Steven L Smith wrote: >> POST should only be used for things that change stuff on the server... >> a contact form, a form that creates something in a database, etc... > > thanks - in 15 years of web programming I have never used get - maybe > time to start now.
A simple example of a type of form you should always use GET for is a search form. Browsers will warn you about resubmitting form input when you press 'back' to a a results page that has been submitted over POST. Just look how google do it. Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

