for example:
[domain.com...]
This is just an example, but most forms will have a trigger such as the action=submit_form name/value pair. You just have to did thru the existing form to find the values.
Cheers,
Jeff
If this is correct, then you want to use the SSI (server side include) CGI script method and not the "GET" (URL) method which would require the user to click a link.
If your host allows SSI you may need to save the HTML page as "filename.shtml" and within the body of that document insert the code-
<!--#exec cgi="/cgi-bin/scriptname.pl" -->
This will run the script every time the page is loaded (note: it will also run if the user clicks "Refresh").