mirror of
https://github.com/jcreek/Assassins-Mission-Control.git
synced 2026-07-12 18:43:43 +00:00
0a7943162d
This version works and has been tested in a full game with over 50 players however there isn’t as yet a proper admin backend and many activities require the admin to fiddle with html or SQL at the moment.
11 lines
588 B
PHP
11 lines
588 B
PHP
<?php
|
|
session_start();
|
|
|
|
$dbhost = "db381141882.db.1and1.com"; // this will ususally be 'localhost', but can sometimes differ
|
|
$dbname = "db381141882"; // the name of the database that you are going to use for this project
|
|
$dbuser = "dbo381141882"; // the username that you created, or were given, to access your database
|
|
$dbpass = "J15h9933"; // the password that you created, or were given, to access your database
|
|
|
|
mysql_connect($dbhost, $dbuser, $dbpass) or die("MySQL Error: " . mysql_error());
|
|
mysql_select_db($dbname) or die("MySQL Error: " . mysql_error());
|
|
?>
|