in reply to (wil) Re: how do I redirect to a previous page in my CGI script
in thread how do I redirect to a previous page in my CGI script

There's a referer() subroutine for clarity:
use CGI qw(redirect referer); print redirect(referer());

-- Randal L. Schwartz, Perl hacker