<?include "Localization.php"?>
<html>
<head>
</head>
<body>
This is in American English
<br>
<br>
<font color="red"><b>
<?
$locEn=new Localization("en","US");
print($locEn->Translate("helloworld"));
?>
</b></font>
<hr>
This is in Canadian French
<br>
<br>
<font color="darkgreen"><b>
<?
$locFr=new Localization("fr","CA");
print($locFr->Translate("helloworld"));
?>
</b>
</font>
</body>
</html>
|