Login   Register  
PHP Classes
elePHPant
Icontem

File: Language.inc.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Ismet Ozalp  >  MsSQL Database Functions  >  Language.inc.php  >  Download  
File: Language.inc.php
Role: Configuration script
Content type: text/plain
Description: Language Select
Class: MsSQL Database Functions
Microsoft SQL server database access wrapper
Author: By
Last change: Updated include
Date: 2006-01-21 22:10
Size: 237 bytes
 

Contents

Class file image Download
<?
Class Language{
    public static function 
pickMessage($id,$language){
        global 
$path2Languages;
        require_once(
"$path2Languages\\$language.inc.php");
        
$MessageList = new MessageList();
        return 
$MessageList->ErrorMessages[$id];
    }
}
?>