- 论坛徽章:
- 0
|
本帖最后由 Grainlin 于 2014-02-27 10:56 编辑
咨询下大神们。。。
这有一个二维属组@efg,能否放入一个表格中?
Vegetable Breakfast Lunch Dinner
Tomatoes no yes yes
Broccoli no no yes
… … … …
… … … …
一个简单的测试脚本:- #!/usr/bin/perl
- use CGI;
- use CGI qw/:standard/;
- use Data::Dumper;
- BEGIN{
- use CGI::Carp qw(fatalsToBrowser carpout);
- open(LOG,">>errors.log") ||die "Couldn't open log file\n";
- carpout(LOG);
- }
- my @abc = (Tomatoes,on,yes,yes);
- my @bef = (fff,eee,ddd,ccc);
- my @zfg ;
- @{$zfg[0]} = @abc;
- @{$zfg[1]} = @bef;
- print header;
- print start_html(
- -title=>"Testing arguments",
- -bgcolor=>"#99FF66"
- ),
- b(),font({-size=>"+2", -color=>"#006600"}),
- p(),"\n",
- p("This is a string"),"\n",
- p({-align=>center}, "red", "green", "yellow"), "\n",
- p({-align=>left}, ["red","green","yellow"]),
- b("THIS TEXT is bold"),
- p("$zfg[1][0]"),
- 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([@zfg]),
- ]
- )
- ),
- end_html;
复制代码 |
|