Liebe CGI'ler,
ich habe ein Problem mit folgender Tabelle, die ich in einem Perl-Skript via Shortcuts erzeugen möchte:
"
print table({-border=>undef},
caption('When Should You Eat Your Vegetables?'),
Tr({-align=>CENTER,-valign=>TOP},
[
th(['Vegetable', 'Breakfast','Lunch','Dinner']),
td(['Tomatoes' , 'no', 'yes', 'yes']),
td(['Broccoli' , 'no', 'no', 'yes']),
td(['Onions' , 'yes','yes', 'yes'])
]
)
);
"
Per Importanweisung (use CGI qw/:standard/;) müßte ich doch eigentlich auch die HTML3 Features, sprich Tabellen, mit importiert haben? Standard-Shortcuts funktionieren! Weiß jemand Hilfe? Die Importanweisung use CGI qw/:standard :HTML3/; hat leider auch nicht geholfen.
Danke schon mal!
Oliver