OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
new_ui
/
assets
/
php
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:13 AM
rwxr-xr-x
📁
PHPMailer
-
05/19/2025 10:07:13 AM
rwxr-xr-x
📄
blockAccount.php
2.23 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
bottom_navbar.php
5.67 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
ch_config.php
9.37 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
ch_db_config.php
3.44 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
common.js
46.89 KB
05/16/2025 04:32:09 AM
rw-r--r--
📄
config.php
9.37 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
db_config.php
3.43 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
db_connect.php
293 bytes
05/19/2025 10:07:13 AM
rw-r--r--
📄
db_gallery.php
294 bytes
05/19/2025 10:07:13 AM
rw-r--r--
📄
delete_account.php
3.5 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
edit_post.php
2.23 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
event_scrollbar.php
4.63 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
footer.php
1.12 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
function.php
23.34 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
getEditContent.php
860 bytes
05/19/2025 10:07:13 AM
rw-r--r--
📄
go_backbar.php
2.32 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
handler.php
3.51 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
indexFooter.php
1.05 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
mail.php
2.67 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
navbar.php
22.77 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
new_social_navbar.php
1.07 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
new_social_sidebar.php
5.59 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
original-function.php
30.55 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
process_data.php
3.87 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
readert_validate.logged.php
481 bytes
05/19/2025 10:07:13 AM
rw-r--r--
📄
report_account.php
1.42 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
report_stream.php
2.08 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
savePost.php
2.38 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
sidebar.php
19.68 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
siginupProcess.php
5.24 KB
05/19/2025 10:07:13 AM
rw-r--r--
📁
simplepie
-
05/19/2025 10:07:13 AM
rwxr-xr-x
📄
stream.php
62.49 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
stream_post_handler.php
3.68 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
validate.logged.php
1.31 KB
05/19/2025 10:07:13 AM
rw-r--r--
Editing: getEditContent.php
Close
<?php header('Content-Type: application/json'); include 'db_config.php'; if ($_SERVER['REQUEST_METHOD'] == 'POST') { if (isset($_POST['post_id'])) { $post_id = $_POST['post_id']; // Prepare the SQL statement to get the chat content $stmt = $readerdb->prepare("SELECT chat FROM reader_stream WHERE id = ?"); $stmt->bind_param("i", $post_id); // Execute the query if ($stmt->execute()) { // Fetch the result $stmt->store_result(); $stmt->bind_result($chat); $stmt->fetch(); $res = [ 'chat' => $chat, // Return the chat content ]; } else { $res = [ 'chat' => "", ]; } $stmt->close(); echo json_encode($res); } }