Help for this page

Select Code to Download


  1. or download this
    print start_table({-border => '', -width => "100%"}),
      (
    ...
       Tr(td('foo is set'), td('foo is still set')) :
       Tr(td('foo is not set'), td('foo is still not set'))
      ), end_table;
    
  2. or download this
    print start_table({-border => '', -width => "100%"});
    if ($foo) {
    ...
      print Tr(td('foo is not set'), td('foo is not set, yet'));
    }
    print end_table;