Re: [PHP] Dealing with multiple form submissions

2011-08-25 Thread John Black
On 24.08.2011 21:38, Mike Mackintosh wrote: On Aug 24, 2011, at 11:52, John Blacks...@network-technologies.org wrote: On 08/24/2011 03:04 AM, Jason Pruim wrote: Wondering what everyone does to prevent multiple form submissions? My form is simply getting emailed to my email, and it redirects

Re: [PHP] Dealing with multiple form submissions

2011-08-25 Thread Mike Mackintosh
On Aug 25, 2011, at 5:01, John Black s...@network-technologies.org wrote: On 24.08.2011 21:38, Mike Mackintosh wrote: On Aug 24, 2011, at 11:52, John Blacks...@network-technologies.org wrote: On 08/24/2011 03:04 AM, Jason Pruim wrote: Wondering what everyone does to prevent multiple form

Re: [PHP] Dealing with multiple form submissions

2011-08-25 Thread Andreas
Am 25.08.2011 11:01, schrieb John Black: True, a SESSION can be reset by closing the browser but I am not trying to deny a user from submitting different information again. I want to prevent them from submitting the same data again by accident (back button or refresh). what about storing

Re: [PHP] Dealing with multiple form submissions

2011-08-25 Thread John Black
On 25.08.2011 15:00, Andreas wrote: Am 25.08.2011 11:01, schrieb John Black: True, a SESSION can be reset by closing the browser but I am not trying to deny a user from submitting different information again. I want to prevent them from submitting the same data again by accident (back button or

Re: [PHP] Dealing with multiple form submissions

2011-08-25 Thread Ashley Sheridan
John Black s...@network-technologies.org wrote: On 25.08.2011 15:00, Andreas wrote: Am 25.08.2011 11:01, schrieb John Black: True, a SESSION can be reset by closing the browser but I am not trying to deny a user from submitting different information again. I want to prevent them from

Re: [PHP] Dealing with multiple form submissions

2011-08-25 Thread John Black
On 25.08.2011 15:48, Ashley Sheridan wrote: So its the same message except for the bits at the bottom that are different? Sounds like its not the same message then. Ash True, it is a message which has been intentionally modified to appear different even though 99.9% of the content is the

Re: [PHP] Dealing with multiple form submissions

2011-08-24 Thread John Black
On 08/24/2011 03:04 AM, Jason Pruim wrote: Wondering what everyone does to prevent multiple form submissions? My form is simply getting emailed to my email, and it redirects to a success page when submitted... Would it be as simple as doing something with the cache control? Basically I'm

Re: [PHP] Dealing with multiple form submissions

2011-08-24 Thread Mike Mackintosh
On Aug 24, 2011, at 11:52, John Black s...@network-technologies.org wrote: On 08/24/2011 03:04 AM, Jason Pruim wrote: Wondering what everyone does to prevent multiple form submissions? My form is simply getting emailed to my email, and it redirects to a success page when submitted...

Re: [PHP] Dealing with multiple form submissions

2011-08-24 Thread Ashley Sheridan
Mike Mackintosh mike.mackint...@angrystatic.com wrote: On Aug 24, 2011, at 11:52, John Black s...@network-technologies.org wrote: On 08/24/2011 03:04 AM, Jason Pruim wrote: Wondering what everyone does to prevent multiple form submissions? My form is simply getting emailed to my email,

Re: [PHP] Dealing with multiple form submissions

2011-08-24 Thread tamouse mailing lists
On Wed, Aug 24, 2011 at 3:46 PM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: I solved this issue with timestamps stored in the db with the submission. This seems like the one sure way to control it. Cookies can be denied, session can be reset, js methods can be noscripted, etc. -- PHP

Re: [PHP] Dealing with multiple form submissions

2011-08-24 Thread Chris Stinemetz
On Aug 24, 2011, at 3:46 PM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: Mike Mackintosh mike.mackint...@angrystatic.com wrote: On Aug 24, 2011, at 11:52, John Black s...@network-technologies.org wrote: On 08/24/2011 03:04 AM, Jason Pruim wrote: Wondering what everyone

[PHP] Dealing with multiple form submissions

2011-08-23 Thread Jason Pruim
Hey Everyone, Wondering what everyone does to prevent multiple form submissions? My form is simply getting emailed to my email, and it redirects to a success page when submitted... Would it be as simple as doing something with the cache control? Basically I'm trying to avoid someone

Re: [PHP] Dealing with multiple form submissions

2011-08-23 Thread Mike Mackintosh
On Aug 23, 2011, at 9:04 PM, Jason Pruim wrote: Hey Everyone, Wondering what everyone does to prevent multiple form submissions? My form is simply getting emailed to my email, and it redirects to a success page when submitted... Would it be as simple as doing something with the