Browse Source

チャット機能追加

main
みてるぞ 1 year ago
parent
commit
c91a19a29d
3 changed files with 13 additions and 0 deletions
  1. +2
    -0
      server/.gitignore
  2. +4
    -0
      server/chat.php
  3. +7
    -0
      server/config.sample.php

+ 2
- 0
server/.gitignore View File

@@ -0,0 +1,2 @@
/config.php


+ 4
- 0
server/chat.php View File

@@ -0,0 +1,4 @@
<?php

require_once './modules/common.mod.php';


+ 7
- 0
server/config.sample.php View File

@@ -0,0 +1,7 @@
<?php

return ['host' => 'localhost', // MySQL のアドレス
'port' => 3306, // MySQL のポート番号
'user' => 'root', // MySQL のユーザ名
'pass' => '']; // MySQL のパスワード


Loading…
Cancel
Save