You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
123456789101112 |
- <?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);
-
|