3D spaceshooter with online scoreboard, online demos, ship building. Now entirely defunct, but might be resurrected
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.
 
 
sector/php-server/mysql.php

22 lines
481 B

<?php
define("SQL_HOST","localhost");
define("SQL_DBNAME","***removed***");
define("SQL_USERNAME","***removed***");
define("SQL_PASSWORD","***removed***");
mysql_connect(SQL_HOST, SQL_USERNAME, SQL_PASSWORD);
mysql_set_charset("utf8");
mysql_select_db(SQL_DBNAME);
mysql_query(
"SET NAMES 'utf8' COLLATE 'utf8_general_ci';".
"SET CHARACTER SET utf8;".
"SET character_set_client = utf8;".
"SET character_set_connection = utf8;".
"SET character_set_results = utf8;"
);
?>