チャット
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
$config = include ('./config.php');
|
||||
|
||||
$db_host = $config['host'];
|
||||
$db_port = $config['port'];
|
||||
$db_user = $config['user'];
|
||||
$db_pass = $config['pass'];
|
||||
|
||||
$__db_connection = new mysqli ($db_host, $db_user, $db_pass, 'goatoh_training',
|
||||
$db_port);
|
||||
|
||||
unset ($config);
|
||||
unset ($db_host);
|
||||
unset ($db_port);
|
||||
unset ($db_user);
|
||||
unset ($db_pass);
|
||||
|
||||
Reference in New Issue
Block a user