I am using CGI-Application using Apache on Windows XP. I have a run mode setup so that I can open a page, slurp in a template into a textarea on a form, and then it's supposed to write the current info in the textarea to a file when the submit button is pushed.
Here is the form field code:
<form name="mainform" action="webapp.cgi?rm=mode9" method="post">
<textarea name="text_field" cols="60" rows="20"><TMPL_INCLUDE NAME="me
+nu.tmpl"></textarea>
<br>
<button type="submit">Update</button> <button t
+ype="reset">Reset Form</button>
</form>
here is the code for the save:
sub save_form {
my $self = shift;
# Get CGI query object
my $q = $self->query();
my $record = $q->param( 'text_field' );
open( FH, '>output.txt' ) || die "Can't open output.txt: $!";
print FH $record;
close ( FH );
# go back to the beginning
return $self->run_mode( 'mode1' );
}
I know my cgi-app is working because I can navigate to other pages in different run modes.
Please help! I see wisdom!
Bob
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.