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.6
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
public_html /
admin /
order /
insert /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2025-09-01 07:26
bio_totto.php
1.39
KB
-rw-r--r--
2024-10-25 17:12
cancel_order.php
4.18
KB
-rw-r--r--
2024-10-28 09:26
error_log
1.22
KB
-rw-r--r--
2025-08-11 13:42
place_bio_order.php
502
B
-rw-r--r--
2024-10-25 15:16
received_order.php
1.18
KB
-rw-r--r--
2024-10-25 16:36
save_pdf.php
2.73
KB
-rw-r--r--
2024-10-28 09:09
Save
Rename
<?php header('Content-Type: application/json'); include_once("../../includes/configuration.php"); // Get the JSON input from the AJAX request $data = json_decode(file_get_contents('php://input'), true); if (isset($data['id']) && isset($data['bio_totto'])) { $orderId = $data['id']; $bioTotto = $data['bio_totto']; $status = "success"; // Assign status to a variable // Prepare the SQL query to update the bio_totto field $sql = "UPDATE order_list SET bio_totto = ?, status = ? WHERE id = ?"; if ($stmt = $conn->prepare($sql)) { $stmt->bind_param('ssi', $bioTotto, $status, $orderId); // Bind the parameters (string, string, integer) if ($stmt->execute()) { // Return a success response echo json_encode(['status' => 'success', 'message' => 'Bio Totto updated successfully.']); } else { // Return an error response if the query fails echo json_encode(['status' => 'error', 'message' => 'Failed to update Bio Totto.']); } $stmt->close(); } else { // Return an error response if the SQL statement couldn't be prepared echo json_encode(['status' => 'error', 'message' => 'Database error.']); } $conn->close(); } else { // Return an error response if required data is missing echo json_encode(['status' => 'error', 'message' => 'Invalid input data.']); } ?>