Simple GuestBook

Location: Software - Services/CGI Center

 

What is a Simple GuestBook? A Simple GuestBook allows your visitors to post or sign a web page on your web site. There are several sections of the Simple GuestBook settings page:

 

 

Edit Guestbook Template

 

1. When the page loads, you will see the following code:

 

<html>

<title>Default Template</title>

<body bgcolor="#FFFFFF">

<!--- Don't modify the cgi tag --->

<cgi>

<!--- Don't modify the cgi tag --->

</body

</html>

 

Note: Do not modify any code between the following tags:

 

<!--- Don't modify the cgi tag --->

<cgi>

<!--- Don't modify the cgi tag --->

 

You can modify any of the surrounding code to meet your specific requirements.

 

2. Once you have modified your Simple GuestBook template, click on the "Save" button.

 

Sign GuestBook

 

1. Set the following information:

 

 

2. Click on the "Sign Guestbook" button.

 

3. A new window should open displaying your signed Simple GuestBook.

 

View GuestBook

 

Click on the "View GuestBook" to view your Simple GuestBook. A new window will appear showing your Simple GuestBook and any signatures or posts that have been made.

 

Manage GuestBook

 

Click on the "Manage GuestBook" to manage your Simple GuestBook.

 

Web Page Form Code

 

Copy the code listed on the Simple GuestBook page in cPanel and paste it somewhere on your web site. The code should look similar to the following:

 

<form action="/cgi-sys/guestbook.cgi" target=guestwindow>

<input type="hidden" name="user" value="USER">

<input type="hidden" name="action" value="addguest">

<input type="hidden" name="basehref" value="http://YOUR_DOMAIN">

<input type="hidden" name="template" value="default">

Name: <input type="text" name="name"><br>

Email: <input type="text" name="email"><br>

Url: <input type="text" name="url"><br>

Comments: <textarea name="comments"></textarea><br>

<input type="submit" value="Sign Guestbook">

</form>