OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
groupchat
/
inc
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/31/2024 11:08:59 AM
rwxr-xr-x
📄
db_connect.php
614 bytes
09/02/2024 12:32:22 PM
rw-r--r--
📄
delete_chat.php
382 bytes
09/02/2024 12:32:22 PM
rw-r--r--
📄
delete_group.php
410 bytes
09/02/2024 12:32:22 PM
rw-r--r--
📄
exit_group.php
431 bytes
09/02/2024 12:32:22 PM
rw-r--r--
📄
function.php
22.65 KB
09/02/2024 12:32:22 PM
rw-r--r--
📄
memberSearch.php
1.32 KB
09/02/2024 12:32:22 PM
rw-r--r--
📄
navbar.php
607 bytes
09/02/2024 12:32:22 PM
rw-r--r--
📄
script.js
11.89 KB
09/02/2024 12:32:22 PM
rw-r--r--
📄
sendreview.php
1.71 KB
09/02/2024 12:32:22 PM
rw-r--r--
📄
sidebar.php
5.71 KB
09/02/2024 12:32:22 PM
rw-r--r--
📄
style.css
11.12 KB
09/02/2024 12:32:22 PM
rw-r--r--
📄
test.php
1.83 KB
09/02/2024 12:32:22 PM
rw-r--r--
📄
update_member.php
460 bytes
09/02/2024 12:32:22 PM
rw-r--r--
Editing: update_member.php
Close
<?php include '../../inc/validate.logged.php'; include 'db_connect.php'; include 'function.php'; if ($_SERVER["REQUEST_METHOD"] == "POST") { $action = $_POST['action']; $selected_members = $_POST['selected_members']; $id = $_POST['id']; $user_ids = array_map('intval', explode(',', $selected_members)); foreach ($user_ids as $uids) { add_members_to_the_group($conn, $action, $uids, $id); } exit; } ?>