in reply to Re: Re: Tables in CGI.pm
in thread Tables in CGI.pm
You should find that solves your problem, (I've removed the square brackets that created the anonymous arrayref).#!/usr/bin/perl -w use strict; use CGI qw(:standard); print table({-border=>'1'}, Tr( td({-width=>'20%'},'col1'), td({-width=>'80%'},'col2') ) );
|
|---|