#STEP B================================ #You MUST modify each of the variables in this this section #B1. REQUIRED: The location of data file on your server. This must #be the relative PATH of the data file from this script ( not the URL of the data file)! #If it is in the same folder as this script, enter only the file name. $data="cusrecdata.txt"; #B2a. REQUIRED: The URL of this file in your cgi-bin directory. You must #provide the full URL, beginning with http $thisurl="http://www.upoint.net/cgi-bin/cusrec.cgi"; #B2b. REQUIRED: The URL of the script "cusrecmail.cgi". You must #provide the full URL, beginning with http $cusrecmail="http://www.upoint.net/cgi-bin/cusrecmail.cgi"; #B3. OPTIONAL ADMIN TEMPLATE: You can format the opening and closing HTML #of your results page in a separate file that can be written in #regular HTML and saved on your server. If your script can't #find this file and open it, the default result screen is displayed #instead. Note: this file is must have three plusses +++ #where you want your search results inserted. $openinghtml="../cusrec/template.htm"; #B3. OPTIONAL PRINT MODE TEMPLATE: You can format the opening and closing HTML #of your results page in a separate file that can be written in #regular HTML and saved on your server. If your script can't #find this file and open it, the default result screen is displayed #instead. Note: this file is must have three plusses +++ #where you want your search results inserted. $openinghtml2="../cusrec/template2.htm"; #Change password to any combination of letters (A-Z, a-z) and #numbers 0-1. USE ONLY LETTERS AND NUMBERS $adminpassword="upoint"; #B5. URL to send users to after posting, editing, or getting errors. #This is usually the admin page. $forwardingURL="../cusrec/admin.htm"; #B6. Maximum number of matching records to display per page $maximumpage=5; #B7. Maximum total number of records to display per search, #for stylistic reasons, should be multiple of above number $maximum=25;