[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Arabic web site.



this is simple example how you could make site translation!

index.php
<?Php
$lang = (isset($_GET['lang'])) ? $_GET['lang'] : 'en';
include_once('./lang/' . $lang . '.php');
print('<html dir=' .$lang['dir']. '>');
print($lang['welcome']);
?>

en.php
<?Php
$lang['dir'] = 'ltr';
$lang['welcome'] = 'welcome';
?>

ar.php
<?Php
$lang['dir'] = 'rtl';
$lang['welcome'] = 'مرحبًا';
?>

the site must be redesigned and use xhtml and css!

I live in morocco, I do speak English better than French... but I think I can help!