One Press of the Submit Button, Form Data sent to Two scripts?
I have an existing script in Perl as the Form Action (that receives the form data). I would also like a PHP script to receive the same form data without interfering with the existing Perl script.
How would you recommend to pass the form data to both scripts?
From my experience today with PHP not passing the GET variables ( http://vbforums.com/showthread.php?s=&threadid=241807 ), I don't think I really want to send to a PHP script first and then resend to the Perl script. So I would probably need to do it from Perl if there is no
ACTION[]=script1&ACTION[]=script2
type multiple submit action.
Also, I can't use CURL.