Ciao a tutti. Sto tentando di creare pagine semi dinamiche in php. E' possibile farlo? Questo che segue è il codice, ma produce sempre il messaggio d'errore da me generato " non abilitato a caricare legacoratini.altervista.org/index.php. ". Qualcuno così gentile che mi da qualche spiegazione....grazie assai anticipatamente.
<?php
$srcurl=' http://legacoratini.altervista.org/index.php ';
$tem= ' tempindex.html ';
$tar= 'index.html';
echo" $srcurl <br></br> $tem <br></br> $tar <br></br> ";
?>
<body>
<?php echo "$tar"; ?>
<?php @unlink($tem);
$dynpage = fopen ($srcurl, 'r');
if(!$dynpage){exit ("<br> </br>Non abilitato a caricare $srcurl");}
$htmldata= fread($dynpage, 1024 * 1024 );
fclose($dynpage);
$tempfile= fopen($tem, 'w');
if(!$tempfile){exit ("Non abilitato a caricare ($tem)");}
fwrite($tempfile, $htmldata);
fclose($tempfile);
$ok= copy($tem, $tar);
unlink($tem);
</body>