PERL Script of the Week -

They have: 62 posts

Joined: Dec 1998

The PERL Script of the Week is intended to help you understand and implement basic scripts on your web site...I thought about doing this on the way home from work, so this first script is a bit more of a snippet, but useful...

Previous Page Link

Save the line below to a file named previous.pl (or .cgi if your host is so configured) and upload to your cgi-bin or scripts directory.

Usage:

<!--#exec cgi="http://your.host.com/cgi-bin/previous.pl"-->

#File Start

#!/usr/bin/perl

print "Content-type: text/html\n\n";
print "<a href=\"$ENV{'HTTP_REFERER'}\">";
print "Previous Page</a>\n";

#File End

While quite simple, it offers you a way to add a link that is not JavaScript dependent. history.go(-1) for example will do a similar job, but requires JavaScript.

Until the next Script of the Week, post you your PERL and CGI questions and suggestions here.

------------------
Jeffrey Ellison
[email protected]
www.eons.com - Free Online Tools for Webmasters

[This message has been edited by Jeffrey Ellison (edited February 04, 1999).]