marlboro.php
<?php
$marlboro = $_GET['marlboro'];
include ("$marlboro.php");
echo '<table border="1" width="25%" id="table1" height="111" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#C0C0C0"><b>'._ANASAYFA.'</b></td>
</tr>
<tr>
<td bgcolor="#C0C0C0"><b>'._HAKKIMIZDA.'</b></td>
</tr>
<tr>
<td style="border-style: solid; border-width: 1px" bgcolor="#C0C0C0"><b>
'._URUNLER.'</b></td>
</tr>
<tr>
<td bgcolor="#C0C0C0"><b>'._REFERANSLAR.'</b></td>
</tr>
<tr>
<td bgcolor="#C0C0C0"><b>'._ILETISIM.'</b></td>
</tr>
</table>';
?>index.php dosyası;
<p align="center"><a href="marlboro.php?marlboro=turkce">TÜRKÇE</a> -
<a href="marlboro.php?marlboro=ingilizce">ENGILISH</a> </p>
turkce.php dosyası;
<?php
define("_ANASAYFA","Ana Sayfa");
define("_HAKKIMIZDA","Hakkımızda");
define("_URUNLER","Urunler");
define("_REFERANSLAR","Referanslar");
define("_ILETISIM","İletişim");
?>ingilizce.php dosyası;
<?php
define("_ANASAYFA","Home Page");
define("_HAKKIMIZDA","About Us");
define("_URUNLER","Products");
define("_REFERANSLAR","References");
define("_ILETISIM","Communication");
?>Dosyalarınızı yukarıdaki gibi güncelleyin.
Kolay gelsin.