Login   Register  
PHP Classes
elePHPant
Icontem

File: TestLocalization.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Bhavin Choksi  >  Internationalization  >  TestLocalization.php  >  Download  
File: TestLocalization.php
Role: ???
Content type: text/plain
Description: Run This php file to see result.
Class: Internationalization
Handy way of implementing Localization.
Author: By
Last change:
Date: 2002-05-05 17:36
Size: 423 bytes
 

Contents

Class file image Download
<?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>