Help for this page

Select Code to Download


  1. or download this
      $html .= $q->table(
        { -bgcolor => '#ffffff',
    ...
                ]
              )
    );
    
  2. or download this
      $html .= "<table class=\"foo\"><thead><tr>"
            . (join "\n", map {"<th>$_</th>"} @field)
    ...
              "<tr class=\"".(somecondition($_))."\">"
                .(join "\n", map {"<td>$record{$_}</td>"} @field)."</tr>"
            } @record) . "</tbody></table>\n";