HI.
If i understood well...i suggest to do this:
Page0.php
$URL="http://www.website.com/page.php";
require_once($URL);
echo "$result";
page.php
$result="ID100909092389";
Is this what you want?
If the page.php is instead a txt file or an html only file you can
use this :
$fp1 = fopen("page.php","r");
if ($fp1)
{
while (!feof ($fp1) && $codiceasci!=13)
{
$char = fgets($fp1,2);
$codiceasci=ord($char);
echo "char=$char - codiceasci=$codiceasci";
if ($codiceasci!=13){$percorso=$percorso.$char;}
}
fclose($fp1);
}
$percorso now have the content of page.php
remark echo that you don t want ..........