 | | Offres d'emplois |  | DEVELOPPEUR D'APPLICATIONS PHP Raccourci Agence Web à la Rochelle, structure à taille humaine à La Rochelle (10 personnes)
recherche un développeur d’applications web, sous envi... | |
 | | Avez vous lu ? |  | | |
|
 Stocker les traductions dans un fichier | |  |

<?
// --- le fichier lang_fr.php
$tr_HomePage = "Page d'accueil";
$tr_VotrePub = "Votre publicité";
?>
<?
// --- le fichier lang_en.php
$tr_HomePage = "Homepage";
$tr_VotrePub = "Advertising";
?>
<?
// --- le fichier lang_es.php
$tr_HomePage = "Pagina Principal";
$tr_VotrePub = "Su publicidad";
?>
<?php
$lang = $_GET['lang'];
$fichier = 'lang_' . $lang;
include_once($fichier);
echo '<a href="index.php?lang=en">' . $tr_HomePage . '</a><br>';
?>
|
|
|
 |
|