Unsupported PHP app for analysing and displaying stats for Team Fortress 2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

database.php 243B

1234567891011121314
  1. <?PHP
  2. require_once(dirname(dirname(__FILE__)) . '/config.php');
  3. mysql_connect(DB_HOST, DB_USER, DB_PASS);
  4. mysql_select_db(DB_DBNAME);
  5. mysql_query("SET NAMES 'utf8'");
  6. function s($sql) {
  7. return mysql_real_escape_string($sql);
  8. }
  9. ?>