- or download this
#!/usr/local/bin/perl -wT
use strict;
...
start_html( -title => 'Test program' ),
h1( 'Hello world' ),
end_html;
- or download this
my $table = $dbh->prepare qq'
CREATE TABLE players
(realname CHAR(20),
=
gold CHAR(40))');
- or download this
my $table = $dbh->prepare( qq'
CREATE TABLE players
(realname CHAR(20),
gold CHAR(40))');
- or download this
create table players
(
...
lastlast VARCHAR(20),
gold INTEGER
);