> Hi there..
>
Howdy

 
> I waz wondering ... is possible to run two CGI script at the 
> after a user presses only one action/submit button on the html page.
> 

Here's how I'd do it:

HTML FORM:
<form action="script1.cgi">
...
script1.cgi:
        #!/usr/bin/perl -w
        use strict;
        use CGI qw(:standard);
        my $q = query_string();
        qx(./script2.cgi '$q');
        qx(./script3.cgi '$q');

With appropriate headers of corse for any output you wanted.

HTH

DMuey

> example would be appreciated..
> 
> Best regards
> Sam
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

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

Reply via email to