[cgiapp] [OFF-TOPIC] Expiring Forms

2002-06-13 Thread Juan Jose Natera Abreu
Hi guys! I guess most of you have experienced the problem of duplicated submissions due reload button I have seen some protections against it on the web, and I would like to implement it on my apps. My first thought is to compare the values being submitted with those in the database, if they

Re: [cgiapp] [OFF-TOPIC] Expiring Forms

2002-06-13 Thread Juan Jose Natera Abreu
I am using PostgreSQL too, it's great DBMS! Thanks for your comments guys! best regards, JJ - Web Archive: http://www.mail-archive.com/cgiapp@lists.vm.com/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [cgiapp] Redirect problem in Netscape

2001-10-22 Thread Juan Jose Natera Abreu
Hi To use redirection, i do it like this: sub sample { my $self = shift; my $q = $self-query(); my $output = $q-header(-refresh='10;URL=http://domain.com/test.pl'); $output .= $q-p('this is just a test'); return $output; } It works for me, I dont use the CGI::App internal header