Hi All,
Perhaps this is a dumb question, but I've just started using PHP.
I have a WinCGI application that returns text/plain MIME Type. I want to call this CGI and assign the return value to a variable. Does any one know how this can be done from a function?
For example:
<?php
function LoadStr()
{
Global $X;
$X=/Win-CGI/MyCGI.exe/GetStr;
echo "<BR>$X";
}
?>
Thank you for any help in advance