Ite multilangues

Fermé
tronch Messages postés 5 Date d'inscription dimanche 24 mai 2009 Statut Membre Dernière intervention 24 août 2009 - 24 mai 2009 à 21:30
Bonjour,
je voudrais réaliser un sit multilangues, j'ai suivis la démarche sur les site
( http://www.phpdebutant.org/article107.php ) mais je n'ai pas eu le resultat désiré,
je vous joints le fichier final mais je n'aimpas de traduction en anglais,
l'un d'entre vous pourrait il m'aider,
Cordialement
tronch


<?php

//*********************
//index.php
//*********************

define('TXT_ACCUEIL_bolle','Welcome on PHP Débutant :');
define('TXT_METEO','The sun is shinning !');
define('TXT_CONSEIL_bolle','');

//*********************
//page1.php
//*********************

define('TXT_ACCUEIL_PAGE1','Welcome on PHP Débutants first page !');
define('TXT_CONSEIL_PAGE2','Install Linux!');

//*********************
//Fin
//*********************

?>
<?php
require('decide-lang.php');
?>
<html>
<body>
<?php echo TXT_ACCUEIL_INDEX;?>
bienvenue sur PHP Debutant
<br>
meteo du jour : il fait un soleil radieux !<?php echo TXT_METEO;?>
<br>
conseil du jour : faites du PHP !<?php echo TXT_CONSEIL_BOLLE;?>
</body>
</html>