# template: example5 # This example uses a "File:" action to append the output form # to a file. This can be used to create a simple Guestbook. # This is the file that the entry gets appended to. # It's a URL in this example, but it could also be # a physical or relative path. ACTION=File: examples/guestbook.html # Since we're writing out a file to be viewed as HTML, we # set ESCAPE_HTML to true in order to prevent users from # entering incorrect codes that will mess up the formatting. ESCAPE_HTML=1 # A default value for the e-mail field EMAIL=@FROM@ # The form presented to the remote user. INPUT_FORM=

Guestbook

Name:

City & Country:

Email (optional):

Comments:



View previous entries . # The output form that is written to the file. OUTPUT_FORM=

@NAME@

@DATE@

Location: @COUNTRY@
E-mail: @EMAIL@
Message:@COMMENTS@
.