Prova con exec:
http://it.php.net/manual/en/function.exec.php
invocando direttamente l'interprete php
Codice PHP:
<pre
<?php
exec
('php /path/al/file/origine.php',$buffer);
var_dump($buffer);
?>
</pre>
valuta anche l'uso di
http://it.php.net/manual/en/function...t-contents.php (fopen,fwrite,fclose)
http://it.php.net/manual/en/function...t-contents.php (fopen,stream_get_contents, fclose)