OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
groupchat
/
backup
/
inc
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/31/2024 11:08:47 AM
rwxr-xr-x
📄
db_connect.php
614 bytes
08/31/2024 11:08:36 AM
rw-r--r--
📄
delete_chat.php
382 bytes
08/31/2024 11:08:37 AM
rw-r--r--
📄
delete_group.php
410 bytes
08/31/2024 11:08:37 AM
rw-r--r--
📄
exit_group.php
431 bytes
08/31/2024 11:08:38 AM
rw-r--r--
📄
function.php
19.08 KB
08/31/2024 11:08:40 AM
rw-r--r--
📄
memberSearch.php
1.32 KB
08/31/2024 11:08:40 AM
rw-r--r--
📄
navbar.php
739 bytes
08/31/2024 11:08:43 AM
rw-r--r--
📄
script.js
10.47 KB
08/31/2024 11:08:44 AM
rw-r--r--
📄
sendreview.php
902 bytes
08/31/2024 11:08:45 AM
rw-r--r--
📄
sidebar.php
5.74 KB
08/31/2024 11:08:45 AM
rw-r--r--
📄
style.css
11.07 KB
08/31/2024 11:08:46 AM
rw-r--r--
📄
update_member.php
460 bytes
08/31/2024 11:08:47 AM
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); } ?>