$text="";
$string="";
$fichier = $langue."/"."page_accueil.txt"; // Nom de votre fichier
if($fp = fopen($fichier,"r")){ // Ouverture du fichier en lecture
$ligne=1; // Initialisation du compteur
while (!feof($fp)) { // Tant que non fin du fichier
$string = fgets($fp,4000);
//text2 + couleur noir
$string = str_replace('
','',$string);
$string = str_replace('','',$string);
//textpetit + couleur noir
$string = str_replace('
','',$string);
$string = str_replace('','',$string);
//text2 + couleur rose
$string = str_replace('
','',$string);
$string = str_replace('','
',$string);
//textpetit + couleur rose
$string = str_replace('','',$string);
$string = str_replace('','',$string);
//gras
$string = str_replace('
','',$string);
$string = str_replace('','',$string);
$string = $string."
";
$text=$text.$string;
$ligne++; // Incrémentation du compteur
}
fclose($fp); // Fermeture du fichier
//barre
$text = str_replace('
','
',$text);
//barre centrée
$text = str_replace('','
',$text);
echo $text;
}else{ // Echec à l'ouverture
echo "Erreur : impossible d'ouvrir ".$fichier;
exit();
}
?>