cgi & form

2001-12-09 Thread Tat Nam
Hi, I'm writing a survey form. A cgi program processes the states of the form and print out somethings and it prompts the user to enter e-mail address in a text box. The user finishes the input of e-mail address. The same cgi program will call another cgi program to process the input email

Re: cgi & form again

2001-12-10 Thread Tat Nam
print $query->submit; print $query->endform; print "\n"; } sub do_work { my($query) = @_; my($name,$value); open (OUTF, ">>dbemail.txt") || die; flock(OUTF,2); seek(OUTF,0,2); foreach $name ( $query->param ) { foreach $value ( $query->param( $name

cgi call cgi program or URL

2001-12-11 Thread Tat Nam
Hi, Does anybody tell how to call another CGI program within a CGI script? Is it possible to include a hyper link within a CGI script? How? Tat Nam

Response to individual from Perl

2001-11-14 Thread Tat Nam
Hi, I'm preparing a survey form with HTML/Javascript and submit it to a CGI program (written by Perl). How can Perl program responds to appropriate message/html document from Perl to individual based on one's fill-in data value(s). Thanks NAM, Tat