This website works better with JavaScript.
Home
Explore
Register
Sign In
miteruzo
/
goatoh_training_android
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
チャット機能追加
main
みてるぞ
1 year ago
parent
a7f6d3f3a5
commit
c91a19a29d
3 changed files
with
13 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
server/.gitignore
+4
-0
server/chat.php
+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 のパスワード
Write
Preview
Loading…
Cancel
Save