Help for this page

Select Code to Download


  1. or download this
    my @tableCont;
    while(***)
    ...
    print startform(***),
    table(Tr(/@tableTop),Tr(/@tableCont)),
    submit(***),end_form);
    
  2. or download this
    
    print startform(***),
    ...
    table(Tr(/@tableTop),Tr(/@tableCont_2)),
    table(Tr(/@tableTop),Tr(/@tableCont_3)),
    submit(***),end_form);
    
  3. or download this
    while($i<30)
    {
      $i++
      push(@tableCont[i%10],td(***).td(***));
    }