PHP Classes

File: English.inc.php

Recommend this page to a friend!
  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: 18 years ago
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!";
    }
}
?>