# #void currently absolete # ########################################################### #!/usr/local/bin/perl -wT # # # # Author name: Phani Adabala # # Creation date: 06/20/2000 # # # # Description: GuestBook Entery Form # ########################################################### # Initilizing and modules/packages used require TripodDate; $CGI = new TripodDate; $todays_date = $CGI->currentDate(); use Header; use Footer; $header = &Header::header(); $footer = &Footer::footer(); # Log the user entery date-time, ip-address .... $user_log = "
$todays_date,$ENV{TZ},$ENV{REMOTE_HOST}, $ENV{HTTP_USER_AGENT},--guestbook.pl"; open (LOG_DATA, ">>log.html") or die "Cannot open buddies.html"; print LOG_DATA "$user_log"; close (LOG_DATA); $form_content = "
Name:
Email-Id:
Your Comments:
Your HomePage http://

View My Guestbook
"; # Printing the contents print << "END"; Content-type: text/html\n\n $header $form_content $footer END exit;