Help for this page

Select Code to Download


  1. or download this
    <segment form_option>
      <option value="{value}">{label}</option>
    </segment>
    
  2. or download this
    my %seg;
    my $content = ExtractAllSegments(ReadFile("template.html"), \%seg);
    
  3. or download this
    my $options;
    foreach my $form_label (sort(keys(%form_elements)_ {
    ...
      $options .= $element;
    }
    InsertAtPlaceholder(\$content, "form_option", $options);
    
  4. or download this
    #####
    #  HTML Template System
    ...
    
    # End File Access Routines
    #####