DB 操作
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
class
|
||||
Chat
|
||||
{
|
||||
var $db;
|
||||
|
||||
function
|
||||
__construct ()
|
||||
{
|
||||
$config = include (__DIR__ . '/config.php');
|
||||
|
||||
$db_host = $config['host'];
|
||||
$db_port = $config['port'];
|
||||
$db_user = $config['user'];
|
||||
$db_pass = $config['pass'];
|
||||
|
||||
$this -> db = new mysqli ($db_host, $db_user, $db_pass, 'goatoh_training',
|
||||
$db_port);
|
||||
}
|
||||
|
||||
function
|
||||
sendChat (
|
||||
int $user_id,
|
||||
string $text):
|
||||
void
|
||||
{
|
||||
$sql = "
|
||||
INSERT INTO
|
||||
chats (
|
||||
id,
|
||||
text)
|
||||
VALUES
|
||||
(
|
||||
$user_id,
|
||||
'$text')";
|
||||
$this -> db -> query ($sql) or die ("db_insert error $sql");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
class
|
||||
Common
|
||||
{
|
||||
var $db;
|
||||
|
||||
function
|
||||
__construct ()
|
||||
{
|
||||
$config = include (__DIR__ . '/config.php');
|
||||
|
||||
$db_host = $config['host'];
|
||||
$db_port = $config['port'];
|
||||
$db_user = $config['user'];
|
||||
$db_pass = $config['pass'];
|
||||
|
||||
$this -> db = new mysqli ($db_host, $db_user, $db_pass, 'goatoh_training', $db_port);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user