Buongiorno,
arrivo subito al dunque, ho un file TXT (ciao.txt) ed uno PHP con questo contenuto:
Codice:<?php echo CIAO; ?>Il file PHP mi mostrerà:Codice PHP:
<html><head>...<?php echo file_get_contents("http://host.com/ciao.txt"); ?>...</body></html>
Al posto di:Codice PHP:
<html><head>...<?php echo CIAO; ?>...</body></html>
Come posso far che mi stampi "CIAO" e non il codice PHP?Codice:<html><head>...CIAO...</body></html>