I looked in the PHP.net manual under the function virtual, but did not see a way to do this....
I am calling a php script into the main php script, something like this:
if($_show == "thisone") {
$_page_content = "It was this one... So show this message, of course this is just a test.";
} else {
$_page_content = virtual("myPerlScript.cgi");
}
But that latter command is not putting the perl scripts output into that variable.
Is there a way to do that?
Thank you,
Richard