On 07 Mar 03, Jose Guevarra ([EMAIL PROTECTED]) wrote:
>  Can someone show me how to create a tables using the object-style
> programming for CGI.pm? I've looked around but 
> can't find any examples or docs.

>From the CGI.pm docs

  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'])
                 ]
                )
             );


-- 
Stephen Patterson http://www.lexx.uklinux.net http://patter.mine.nu
[EMAIL PROTECTED]  remove SPAM to reply        
Linux Counter No: 142831 GPG Public key: 252B8B37        
Last one down the pub's an MCSE
_______________________________________________
ActivePerl mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to