Login   Register  
PHP Classes
elePHPant
Icontem

File: cnx_i18n.inc.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Alan H. Lake  >  I18N class  >  cnx_i18n.inc.php  >  Download  
File: cnx_i18n.inc.php
Role: Configuration script
Content type: text/plain
Description: Container for database connection variables
Class: I18N class
Get translation texts from different containers
Author: By
Last change: Change reference to ".inc" files to ".inc.php" for greater security.
Date: 2005-09-25 12:08
Size: 244 bytes
 

Contents

Class file image Download
<?php
$host 
"localhost";
$user "";
$password "";
$db "";
$table "";
if(empty(
$host) or empty($user) or empty($password) or empty($db) or empty($table))
  die(
'You must assign a value to all of the variables in cnx_i18n.inc.php.');
?>