you want to build a perl cgi from scratch?? i dont know much about object orientated perl if thats what your after...
anyway, personally i would get it looking however you want it first, then when you test your perl script you can see how it works.
for the perl
use CGI;
$query = new CGI;
# start the html output
print STDOUT $query -> header();
print STDOUT $query -> start_html ( -title=> "Message board.cgi", -BGC
+OLOR=>"yellow");
print STDOUT "\n<h1><align=center>PUT YOUR TITLE HERE</CENTRE></H1>\n"
+;
# retrive info from the html form using he param function
# e.g
$people = $query ->param ('people');
# do this for all your variables
# design some failsafes using perls regular expressions so that
# if nothing has been entered in the message box they get a warning
# message
if ($message !~/\w+/)
{
print STDOUT "<P> you have not entered a message\!\n";
print STDOUT $query -> end_html;
exit (0);
}
on your html form you need to a comand that accesses the perl script. it should look something
like this
<form method ="post"
action ="http://www.whereever/directory/myCGI.cgi"
enctype="multipart/form-data">
Hope this was what you were after.
Lolly :)
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.