Help for this page

Select Code to Download


  1. or download this
    print qq(<table>) ;
    for my $a ( 1 .. 10 ) {
    ...
      print qq(</tr>) ;
      }
    print qq(</table>) ;
    
  2. or download this
    <table>
    <? for my $a ( 1 .. 10 ) { ?>
    ...
      </tr>
      <? } ?>
    </table>