Login   Register  
PHP Classes
elePHPant
Icontem

File: dbsetup.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Voznyak Nazar  >  MVC Membership System  >  dbsetup.php  >  Download  
File: dbsetup.php
Role: Configuration script
Content type: text/plain
Description: database configuration script
Class: MVC Membership System
Membership system using the MVC design pattern
Author: By
Last change:
Date: 2003-12-30 00:07
Size: 284 bytes
 

Contents

Class file image Download
<?

//global connection object
  
$dbHost "localhost";
  
$dbUsername "root";
  
$dbPassword "";
  
$dbName "escort";
  
$go_conn = &ADONewConnection('mysql');
  
$go_conn->PConnect($dbHost$dbUsername$dbPassword$dbName);
  
$ADODB_FETCH_MODE ADODB_FETCH_ASSOC;

?>