]> jfr.im git - irc/gameservirc.git/blame - gameserv/php/mysql.php
finalizing the php scripts
[irc/gameservirc.git] / gameserv / php / mysql.php
CommitLineData
38a0c7cb 1<?php
2 include ('config.php');
43058315 3 $link = mysql_connect("$mysqlhost", "$mysqluser", "$mysqlpassword") or die ("Couldn't connect: " . mysql_error());
38a0c7cb 4 mysql_select_db("$mysqldatabase") or die ('Could not select database: ' . mysql_error());
5?>