 | | Offres d'emplois |  | Développeur web Développeur Web - maîtrise de PHP/MySQL Flash/ActionScript
- des compétences en graphisme sont indispensables
- une connaissance des serveurs Lin... | |
 | | 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>';
?>
|
|
|
 |
|