#!/usr/local/bin/perl $_ = ; # process the POST format s/^username\=//; s/\+/ /g; s/%(..)/pack("c",hex($1))/ge; # get time ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); $date = sprintf("%02d:%02d:%02d %02d/%02d/%02d", $hour,$min,$sec,$year,$mon+1,$mday); # append to the end of the blackboard-file open(OUT, ">> /users/@ARGV/.public_html/guestbook.html"); print OUT ; print OUT "$date" ; print OUT "\n
\n"; close(OUT); # print message print "Content-type: text/html\n\n"; print "

Your tag has been added to the Guest Book!

";