Please assist.
I have an HTML form that posts to a Perl script
such as <form method="post" action="../cgi-bin/signup.pl>
I do not know Perl and therefore do not want to tamper with this script.
Is there a way for me to :
1st - POST the data (variables) from this HTML form
to a PHP script such as <form method="post" action="passalong.php3">
so that I may:
2nd - Store the information in a MySQL database and then:
3rd - Pass the required variables on to the Perl script
without tampering with the Perl? (maybe from within "passalong.php3")?
{basically, I just want to store the data then submit it to Perl}