FormMail within a CGI Script

2008-09-20 Thread Mike Flannigan
Within a start_html block in a CGI script I do this: button(-name='button_name', -value='I have info to contribute', -onClick=redirectmail()), In redirectmail() is have: sub redirectmail { print header, start_html('Mail Info'), h1('Mail Info'),

Re: FormMail within a CGI Script

2008-09-20 Thread Randal L. Schwartz
Mike == Mike Flannigan [EMAIL PROTECTED] writes: This is Perl... Mike sub redirectmail { Mike print header, Mikestart_html('Mail Info'), Mikeh1('Mail Info'), But this isn't... MikeFORM Mike

Carry Variable to Form

2008-09-20 Thread Mike Flannigan
I have an html file that parses passed parameters with this code: script type=text/javascript var query = location.href.substring((location.href.indexOf('?')+1), location.href.length); if(location.href.indexOf('?') 0) query = ''; querysplit =

Re: Carry Variable to Form

2008-09-20 Thread Owen
Hi, This is a Perl mailing list, maybe you would be better off posting to a javascript list, or if it is a html file, a html group? Owen I have an html file that parses passed parameters with this code: script type=text/javascript var query =