PHP Classes

File: english.php

Recommend this page to a friend!
  Classes of Asokan Sivasubramanian   Language Convert class   english.php   Download  
File: english.php
Role: Example script
Content type: text/plain
Description: Language script
Class: Language Convert class
Let users choose site idiom
Author: By
Last change:
Date: 15 years ago
Size: 653 bytes
 

Contents

Class file image Download
<?php


   
/**
    * This is the the Test File for Language_Convert.clss.php. It shows how to create and used
    * the website based on Language
    * @package Language_Convert_Class
    * @subpackage Language_Convert
    * @author Asokan Sivasubramanian <asokanstar@gmail.com>
    * @version 1.0
    */


   /*
    * Array handler setup as key & value
    * Key represent the displayed values
    * This file used to manage english language
    */

$lang_array = array(

 
'HELLO' => 'Hello,',
 
'WELCOME' => 'Welcome to our Site,',
 
'THANKS' => 'Thanks & Regards',
 
'DEVELOPER' => 'Developer'

);



?>