#!/usr/local/bin/perl5 # # Add new data to the report # use CGI; my $q = new CGI; $report = "ffc_bios.html"; open (OUT, ">>$report") or die "cannot open $report..."; print OUT "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
Name:\n", "
", $q->param('name'), "
", "
Birthday (MM/DD/YY):\n", $q->param('mon'), "/\n", $q->param('day'), "/\n", $q->param('yr'), "
Life Story:\n", "
", $q->param('ls'), "
", "
Hobbies:\n", "
", $q->param('h'), "
", "
Areas of Expertise:\n", "
", $q->param('ae'), "
", "
Piece of Wisdom:\n", "
", $q->param('pw'), "
", "
Advise:\n", "
", $q->param('a'), "
", "
Interesting Story:\n", "
", $q->param('is'), "
", "
Things you do for fun:\n", "
", $q->param('th'), "
", "
\n", "

"; close(OUT); print $q->header; print $q->start_html(-title=>'Form submitted', -bgcolor=>'white'); print "

Thanks for filling this out!

\n\n", "

\n", "

You can check the FFC members' bios here...

\n", "

Click here to return to the Friends an d Family Club home page

";