This website works better with JavaScript.
Home
Explore
Register
Sign In
miteruzo
/
goatoh_training_server
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
あ
main
Gitea
1 year ago
parent
7915995d56
commit
3eb8c01abf
1 changed files
with
4 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-2
chat.php
+ 4
- 2
chat.php
View File
@@ -1,12 +1,14 @@
<?php
var_dump ($_POST);
require_once './modules/chat.mod.php';
$chat = new Chat;
$user_id = $_
POS
T['id'];
$chat_message = $_
POS
T['text'];
$user_id = $_
GE
T['id'];
$chat_message = $_
GE
T['text'];
$chat -> send ($user_id, $chat_message);
Write
Preview
Loading…
Cancel
Save