PHP Classes

File: database.inc.php

Recommend this page to a friend!
  Classes of   mysqlc1   database.inc.php   Download  
File: database.inc.php
Role: Configuration script
Content type: text/plain
Description: Database connection fields. These need to be edited with your credientials
Class: mysqlc1
connect to a mysql database
Author: By
Last change:
Date: 19 years ago
Size: 354 bytes
 

Contents

Class file image Download
<?
/*
        SMyCC [Pronounced "smEEk"]
        (Simple MySQL Connection Class)
        © 2005-2006 Steve Castle
        http://www.stscac.com

*/

   
$server = ""; // Usually "localhost"
   
$conn_username = ""; // Connection Username
   
$conn_password = ""; // Connection Password
   
$database_name = ""; // Database to connect to
?>