
Perl CGI TEST PAGEです
Perlの特徴は:インタープリター型言語です
sql設定(table設定):
$sql = " create table test ( "
. " dmail text,"
. " passwd text,"
. " time timestamp,"
. " op1 integer);"
$sth = $dbh->prepare($sql);
$sth->execute;
$sth->finish;
$dbh->disconnect;