<?php
/*****
config.php:
This file contains site wide config options - included in every script.

author: jez hancock
email: munk@munk.me.uk
date: 15/10/2002

#########################################
The mysql structure for the 'users' table:
# Table structure for table 'users'
#

CREATE TABLE users (
  id int(5) NOT NULL auto_increment,
  login varchar(15) DEFAULT '0' ,
  password varchar(15) DEFAULT '0' ,
  PRIMARY KEY (id)
);
#########################################
*****/
// global functions:
include_once("functions.php");

// register the session variable $session:
session_register("session");

// Globals:
// $message may contain error msgs if submissions are not correct or need modifying:
$messages=array();

// mysql connex link resource:
$link;

// db details:
$dbhost="localhost";
$dbuser="CHANGE_ME";
$dbpass="CHANGE_ME";
$dbname="CHANGE_ME";

// connect to db:
connectToDB();
?>