PHP Classes

File: dbsetup.php

Recommend this page to a friend!
  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: 21 years ago
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;

?>