Login   Register  
PHP Classes
elePHPant
Icontem

File: English.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  >  English.inc.php  >  Download  
File: English.inc.php
Role: Configuration script
Content type: text/plain
Description: English Language File
Class: MsSQL Database Functions
Microsoft SQL server database access wrapper
Author: By
Last change:
Date: 2006-01-21 21:40
Size: 299 bytes
 

Contents

Class file image Download
<?
Class MessageList{
public 
$ErrorMessages= Array();
    public function 
__construct(){
        
$this->Fill();
    }
    public function 
Fill(){
        
$this->ErrorMessages[0]="Can Not Connect to Database!";
        
$this->ErrorMessages[1]="Can Not Select Database!";
        
$this->ErrorMessages[2]="FAILED!";
    }
}
?>