<?php //start //configure database info $databaseserver = "localhost"; //usually localhost $databasename = "dbname"; //the name of your database $databaseuser = "dbuser"; //the name of the database-user $databasepass = "dbpass"; // the password to your database $directory ="http://www.yoursite.com/WebLeague" ; //the location of your WebLeague directory (no trailing slash) //configure the tables in the database $playerstable = "webl_players"; //the name of the table that contains information about the players $gamestable = "webl_games"; //the name of the table that stores the played games $newstable = "webl_news"; // the name of the table that stores the news $varstable = "webl_vars"; //the name of the table that stores various information $admintable = "webl_admin"; //name of the table that stores the admin login information $pagestable = "webl_pages"; //name of the table that stores additional pages //finish ?>