http://qs321.pair.com?node_id=338767


in reply to Obtaining requesting form's URL?

You should be able to use the environmnet variable HTTP_REFERER.

eg.
if($ENV{HTTP_REFERER} eq 'http://abc/searchForm2.cgi'){ # Do whatever }

- Tom