Basic Settings
Access Numbers & Connection Configuration
guestbook.html
.<h1>My Guestbook Page</h1>
, if you want.<form method="post"
.THE PATH TO THIS FILE
with the path to your guestbook.html
file. For example, if your guestbook is in a directory in your webspace called guestbook
, the path would be: guestbook/guestbook.html
.<form method="post" action="https://www.yourdomain.com:8080/cgi-bin/guestbook.pl/~username/guestbook/guestbook.html">
777
. Most FTP clients have an option called chmod
or a selection of "UNIX commands." If you don't do this, the counter will not work.<html> <head> <title>Example Guestbook</title> <!-- You will need to customize this page for your own use. --> <!-- See the comments included in the code for hints on customizing. --> </head> <body> <!--GUESTBOOK--> <!-- Do NOT delete this line! --> <h1>My Guestbook Page</h1> <p>Hi, and welcome to my guestbook. Please sign below:</p> <p>Last post on <!-- Do NOT delete this line! --> <!--LASTDATE--> <!-- Do NOT delete this line! --> <!--POINTER--> </p> <h2>Sign the Guestbook</h2> <form method="post" action="https://www.yourdomain.com:8080/cgi-bin/ guestbook.pl/the path to this file"> <!-- Delete the words "the path to this file" and replace them with the actual path to this html file. --> <p> <label for="name">Name:</label> <input type="text" name="name" size="30" maxlength="30"><br /> <label for="address">E-mail address:</label> <input type="text" name="address" size="30" maxlength="30"><br /> <label for="body">Text:</label><br /> <textarea name="body" rows=15 cols=60></textarea> </p> <p> <input type="submit" name="" value="post"> <input type="reset" name="" value="clear"> </p> </form> <!-- Put additional text, like an address or something, here. --> </body> </html>