DIRECTION CHANGE FROM RTL TO LTR USING PHP
To get LTR and RTL directions correctly we are using English for LTR and Arabic for RTL.<?php$textdir = 'ltr';if ($_SESSION['lang']==2){$textdir = 'rtl';}?><html dir="<?php echo $textdir?>">Create a page with language.php and insert following code....
Recent Comments