Can someone point me in the right direction as to how I might submit PHP variables to a Perl script using the post method?
For example:
<?php
// vars.php
$name="test";
$pass="123";
$perl_script="script.pl";
// how do I post this info???
?>
I could do this manually by using the get method and entering http://.../script.pl?name=test&pass=123 into a web browser. However, I would like this to be done dynamically when the vars.php file is run.
Any suggestions? Thanks in advance.
Zach Curtis
POPULUS