Help with page reloads

2003-07-30 Thread Johnstone, Colin
Hi all, I am writing my own form processing script as a learning exercise and want to know how to reload the page after processing the form to clear the forms processor, to prevent the user from refreshing the page and duplicating their submission. Im a PHP guy normally and just simply type the f

Re: Help with page reloads

2003-07-30 Thread Wiggins d'Anconia
Johnstone, Colin wrote: Hi all, I am writing my own form processing script as a learning exercise and want to know how to reload the page after processing the form to clear the forms processor, to prevent the user from refreshing the page and duplicating their submission. Im a PHP guy normally and

Re: Help with page reloads

2003-07-30 Thread Wiggins d'Anconia
Always group reply so everyone can help and be helped. Johnstone, Colin wrote: Thank You, I tried this but with no success #!/usr/bin/perl -w print 'Location: http://www.mydomain.com/cgi-bin/myform.cgi'; You need to indicate the end of the headers with a double new line: print "Location: htt

RE: Help with page reloads

2003-07-30 Thread Johnstone, Colin
It works!, Thank you for your help -Original Message- From: Wiggins d'Anconia [mailto:[EMAIL PROTECTED] Sent: Thursday, 31 July 2003 2:50 PM To: Johnstone, Colin; [EMAIL PROTECTED] Subject: Re: Help with page reloads Always group reply so everyone can help and be helped. John