OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
groupchat
/
backup
/
backup
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/31/2024 11:08:47 AM
rwxr-xr-x
📄
bfunction.php
11.61 KB
08/31/2024 11:08:23 AM
rw-r--r--
📄
bgroup.php
14.44 KB
08/31/2024 11:08:27 AM
rw-r--r--
📄
bindex.php
26.59 KB
08/31/2024 11:08:23 AM
rw-r--r--
📄
create_group.php
1.03 KB
08/31/2024 11:08:27 AM
rw-r--r--
📄
dashboard.php
8.53 KB
08/31/2024 11:08:27 AM
rw-r--r--
📄
db_connect.php
614 bytes
08/31/2024 11:08:28 AM
rw-r--r--
📄
delete_chat.php
369 bytes
08/31/2024 11:08:28 AM
rw-r--r--
📄
delete_group.php
362 bytes
08/31/2024 11:08:28 AM
rw-r--r--
📁
dump
-
08/31/2024 11:08:51 AM
rwxr-xr-x
📄
exit_group.php
404 bytes
08/31/2024 11:08:28 AM
rw-r--r--
📄
function.php
12.33 KB
08/31/2024 11:08:29 AM
rw-r--r--
📄
group.php
19.26 KB
08/31/2024 11:08:31 AM
rw-r--r--
📄
index.php
27.94 KB
08/31/2024 11:08:30 AM
rw-r--r--
📄
memberSearch.php
1.32 KB
08/31/2024 11:08:30 AM
rw-r--r--
📄
register.php
5.08 KB
08/31/2024 11:08:30 AM
rw-r--r--
📄
sendreview.php
626 bytes
08/31/2024 11:08:30 AM
rw-r--r--
📄
signin.php
5.52 KB
08/31/2024 11:08:31 AM
rw-r--r--
📄
signout.php
295 bytes
08/31/2024 11:08:31 AM
rw-r--r--
📄
test.php
2 KB
08/31/2024 11:08:32 AM
rw-r--r--
📄
test1.html
1.4 KB
08/31/2024 11:08:31 AM
rw-r--r--
📄
test1.php
125 bytes
08/31/2024 11:08:31 AM
rw-r--r--
📄
update_member.php
729 bytes
08/31/2024 11:08:31 AM
rw-r--r--
📄
validate.logged.php
580 bytes
08/31/2024 11:08:31 AM
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") { $selected_members = $_POST['selected_members']; $group_id = $_POST['group_id']; $user_ids = array_map('intval', explode(',', $selected_members)); foreach ($user_ids as $ids) { add_members_to_the_group($conn, $ids, $group_id); } echo '<script>alert("Group Updated Successfully...")</script>'; // Display a message and redirect to index.php after 5 seconds echo '<p>Redirecting to the dashboard...</p>'; echo '<script>setTimeout(function() { window.location.href = "index.php"; }, 100);</script>'; exit; } ?>