Hi I'd like to execute a remote script from a php code and i need to process it's returning values for creating my scripts output. How can i do it?
should work with
$data = file("script.php?parm=xxx");
assuming that script.php returns text output.
see file() reference.
what I did not underline is that the script call can include http://server.name.com/... which you'll need for calling a script on a remote host.