Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I have the test php script read this way:my $_result = `php file.php memberid=$_memberid position=left referrer +=$_referrerid`;
<?php my $_memberid = $_GET['memberid'] || $_POST['memberid'] || $memberid; my $_position = $_GET['position'] || $_POST['position'] || $position; my $_referrerid = $_GET['referrer'] || $_POST['referrer'] || $referrer +; echo "I have recieved the MemberID As: $_memberid and the Position as +$_position and finally the referring member id is: $_referrerid "; ?>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: executing a PHP script from my perl program.
by ikegami (Patriarch) on Jul 21, 2008 at 11:51 UTC | |
|
Re: executing a PHP script from my perl program.
by Anonymous Monk on Jul 21, 2008 at 11:44 UTC |