PHP Classes

File: settings.php

Recommend this page to a friend!
  Classes of Andrew   Login Script   settings.php   Download  
File: settings.php
Role: Configuration script
Content type: text/plain
Description: settings file
Class: Login Script
Authenticate users with records in a MySQL table
Author: By
Last change: changed format
Date: 15 years ago
Size: 410 bytes
 

Contents

Class file image Download
<?php
/**
 * settings.php
 *
 * configuration settings for the Login Script.
 */

// Database Settings //////////////////////////////////////////////////////////

   
$dbhost = "localhost"; //MySQL Host
   
$dbname = ""; //MySQL DB name
   
$dbuser = ""; //MySQL User
   
$dbpassword = ""; //MySQL password
   
////////////////////////////////////////////////////////////////////////////////

?>