Installing and using Tranzzle's PHP Translation Management System is quick and easy:
  1. 1 First download the Tranzzle's TMS.
  2. 2 Unpack the software to your PHP site.
  3. 3 Navigate to the Tranzzle TMS admin panel, input your site translations
  4. 4 Open your preferred code editor and place this code at the top of any page you wish to be translated:
    <?php
       include 'tranzzle/Tranzzle.php';
       $pageText = Tranzzle::create();
    ?>
  5. 5 Replace the text of you site with simple code, such as this:
    <?php echo $pageText->get($lang, 'Page Title'); ?>