1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
/**
* script_01.php
*/
$cfm_script = implode("",file ('http://www.example.com/script_01.cfm'));
supprime_avant_apres("<body>", $cfm_script);
$cfm_script = str_replace("script_02.cfm", "script_02.php", $cfm_script);
echo entete();
echo $cfm_script;
echo pied_de_page();
/**
* script_02.php
*/
$cfm_script = implode("",file ('http://www.example.com/script_02.cfm'));
supprime_avant_apres("<body>", $cfm_script);
echo entete();
echo $cfm_script;
echo pied_de_page(); |
Partager