PHP Classes

File: configuration.php

Recommend this page to a friend!
  Classes of kalo   User online and hits   configuration.php   Download  
File: configuration.php
Role: Configuration script
Content type: text/plain
Description: configuration
Class: User online and hits
Keep track of site visitors and page hits in MySQL
Author: By
Last change:
Date: 14 years ago
Size: 479 bytes
 

Contents

Class file image Download
<?php
//IMPORTANT:
//Rename this file to configuration.php after having inserted all the correct db information

global $configuration;

// edit the information below to match your database settings
$configuration['db'] = 'test'; // database name
$configuration['host'] = 'test'; // database host
$configuration['user'] = 'test'; // database user
$configuration['pass'] = 'test'; // database password
$configuration['port'] = '3306'; // database port

?>