Howdy... 🙂
I need to call a script that is sitting in somebody else's domain and utilize that value...
For example, I am calling http://www.notmydomain.com/echo.php which basically does echo("hello");
and my script would be something like this...
$output1 = "Some output from my script...";
$output2 = getOutput("http://www.notmydomain.com/echo.php");
// This URL could be some something.html or something.txt...
echo("Output #1 is " . $output1 . " and output #2 is " . $output2);
function getOutput() { /* I have no clue... */ }
Any idea???
Thanks... 🙂