in reply to writing to a mysql database
my $dbh = DBI->connect(...);
my $sth = $dbh->prepare_cached(...);
$sth->execute; $sth->finish;
You should also read the MySQL docs and the DBI docs.
Oh, and you'll need to get the data from the HTML form... but I assume you're using CGI.pm, so that's not an issue.
|
|---|