Help for this page

Select Code to Download


  1. or download this
    # Define Your Database Fields Here Like So
    #       Field Name => [Number, 'Readable Name', 'type of field, two op
    +tions are text or textarea'
    ...
    #       Phone =>                [3,             'Phone Number:',      
    +          'text'],
    #       Address =>      [4,             'Street Address:',            
    +  'textarea']
    #);
    
  2. or download this
    %fields = (
            ID =>                   [0,             'Link ID:',           
    +          'text'],
    ...
                    'ops' => 'ops',
                    'cmd' => 'cmd');
    
  3. or download this
    sub build_record_page {
    my (%record) = @_;
    ...
            $html .= "</TABLE><P>";
    print $html;
    }