#!/usr/bin/python
###################################################################################
# display an html table
###################################################################################
print("Content-Type: text/html \n")      #http header with newline char (required for the web)

print('<pre>')                                  #to print better on the web

print('''
        Num   Firstname   Lastname   Sex
        ---   ---------   --------   ---
         1    Barbara     Burns       F
         2    Vincent     Cambria     M
         3    Davidson    Duncan      M 
         4    Smith<      David       M 
         5    Eugene      Thomas      M 
         6    Cynthia     Owens       F 
''')


#=== link to see the python code =================================================
import os, sys
sys.path.insert(0,'/home/staff/sultan/public_html/cgi-bin/python')
import zCode                          #import func to display the Python code
filename = os.path.abspath(__file__)  #get absolute file name 
zCode.display(filename)               #call it
#=================================================================================