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: db_connect.php
Close
<?php // This connection is for the server // $servername = "localhost"; // $username = "root"; // $password = "newstart"; // $dbname = "cream"; $servername = "139.59.38.164"; $username = "root"; $password = "newstart"; $dbname = "cream"; // This connection is for the localhost // $servername = "localhost"; // $username = "root"; // $password = ""; // $dbname = "cream"; $conn = new mysqli($servername, $username, $password, $dbname); $conn->set_charset('utf8mb4'); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } ?>