# # Configuration file for the forms to flat database scripts # # Rob Hartill March 1994. #### # Set to 1 if you want to see what the equivalent GET URL should look like $VERBOSE = 1; #### # The names of the fields of the database @field_names = ("country", "site","type of work", "name of work", "detail of work"); #### # The name of the person to email any comments to $who_to_mail = "gremarth@fac.anu.edu.au"; #### # The datasbase path and name $DATABASE_FILENAME = "/data/users/httpd/htdocs/laserdisk/dbperl/lddb"; #### # The format of matching records $OUTPUT_FORMAT = "
FIELD[1] FIELD[2] FIELD[3]
\n"; #### # The character used to separate database fields $FIELD_SEPARATOR = ','; #### # Some messages to print at the top and foot of the output $START_CHECK_MESSAGE = "Please select the items you would like to search for"; $END_CHECK_MESSAGE ="
Whatever text or HTML appears here, will appear at the bottom of the check query page"; $START_SEARCH_MESSAGE = "Here are the results from the search..

\n"; $END_SEARCH_MESSAGE = "


Click here to return somewhere.."; ################ nothing below this point needs changing ################### #### # Define some constants $ANDING =1; $ORING =2; $YEARS =3; $CENTURIES =4; $REG_EXP =5;