サーバ用リポジトリ作成

This commit is contained in:
2023-06-30 20:06:50 +09:00
commit 4c36377de9
6 changed files with 110 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
require_once './modules/common.mod.php';
$db = new Chat;
$user_id = $_POST['id'];
$chat_message = $_POST['text'];
$db -> send_chat ($user_id, $chat_message);