> 
> I'm new with PERL - I have a very simple PERL program that will accept
> data from an HTML program and send it out as an email. In the HTML
> program, the data items are filled in and then the PERL/CGI program is
> called by a POST. The PERL/CGI program runs, the screen goes blank and
> the email is sent. But, what I would like to be able to do is 
> to somehow
> return to the "calling" HTML program. How can I put a 
> "return" or "link"
> into my PERL/CGI program to "go back" to the calling HTML program?
> Thanks for any help or suggestions.

are you saying you want the HTML page to reload after the email is sent? 
if you are using cgi module in your program, you can just call the redirect
method:
print $q->redirect("http://yourserver/foo.html";);

or you can even just have the cgi literally print the HTML page.


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to