-- define the standard HTTP header set LF to ASCII character (10) set CR to return set CRLF to CR & LF set http_10_header to "HTTP/1.0 200 OK" & CRLF & Â "Server: MacHTTP" & CRLF & Â "MIME-Version: 1.0" & CRLF & Â "Content-type: text/html" & CRLF & CRLF -- return the results, including the prepended variables, as an HTML file return http_10_header & Â "" & Â " " & Â "Hello, World" & Â "" & Â "Hello, World!" & Â "

http_search_args: " & http_search_args & Â "
path_args: " & path_args & Â "
post_args: " & post_args & Â "
method: " & method & Â "
client_address: " & client_address & Â "
username:" & username & Â "
password: " & password & Â "
from_user:" & from_user & Â "
server_name:" & server_name & Â "
server_port:" & server_port & Â "
script_name: " & script_name & Â "
content_type: " & content_type & Â "
referer: " & referer & Â "
user_agent: " & user_agent & Â "" & Â ""