OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
groupchat
/
backup
/
inc
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:13 AM
rwxrwxr-x
📄
db_connect.php
614 bytes
05/19/2025 10:07:13 AM
rw-rw-r--
📄
delete_chat.php
382 bytes
05/19/2025 10:07:13 AM
rw-rw-r--
📄
delete_group.php
410 bytes
05/19/2025 10:07:13 AM
rw-rw-r--
📄
exit_group.php
431 bytes
05/19/2025 10:07:13 AM
rw-rw-r--
📄
function.php
19.08 KB
05/19/2025 10:07:13 AM
rw-rw-r--
📄
memberSearch.php
1.32 KB
05/19/2025 10:07:13 AM
rw-rw-r--
📄
navbar.php
739 bytes
05/19/2025 10:07:13 AM
rw-rw-r--
📄
script.js
10.47 KB
11/28/2024 01:24:18 PM
rw-rw-r--
📄
sendreview.php
902 bytes
05/19/2025 10:07:13 AM
rw-rw-r--
📄
sidebar.php
5.74 KB
05/19/2025 10:07:13 AM
rw-rw-r--
📄
style.css
11.07 KB
11/28/2024 01:24:18 PM
rw-rw-r--
📄
update_member.php
460 bytes
05/19/2025 10:07:13 AM
rw-rw-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; } ?>