This is my first time working with a database and I was wondering if anyone would help me get on the right track. Below is my attempt and as you can probably see nothing works. Can anyone point me in the right direction?
#!/usr/bin/perl -w
use strict;
use warnings;
use Mysql;
use CGI qw/:standard/;
my $query = CGI->new;
my %form = $query->Vars;
my $entries = "entries.txt";
my $dbh = Mysql->connect($poemDB, sulfericacid, ----);
$dbh->selectdb($poemDB);
print "Database content\: $dbh";
my $rc = $dbh->shutdown();
if ($form{'poemtitle'} && $form{'poemsub'}) {
open (ENTRIES, ">> $entries") or die "Cannot open $entries";
print ENTRIES "$form{'poemtitle'}\n";
print ENTRIES "$form{'poemsub'}\n";
close (ENTRIES);
print header(),
start_html('Success'),
"Your poem entitled <b>$form{'poemtitle'}</b> has been added\n",
end_html();
}
else {
print header(),
start_html('Poetry Submissions'),
#########
start_form,
"Submission Title",textfield('poemtitle'),p,
"Submission",textarea(-name=>'poemsub',
-rows=>10,
-columns=>50),
submit,
end_form,
hr,
end_html();
}
"Age is nothing more than an inaccurate number bestowed upon us at birth as just another means for others to judge and classify us"
sulfericacid
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.