OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
sendy
/
includes
/
ares
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/18/2021 10:11:21 AM
rwxr-xr-x
📄
add-autoresponder.php
1.64 KB
11/18/2021 09:43:35 AM
rw-r--r--
📄
delete-ares.php
1.17 KB
11/18/2021 09:43:35 AM
rw-r--r--
📄
delete-attachment.php
800 bytes
11/18/2021 09:43:35 AM
rw-r--r--
📄
delete-email.php
670 bytes
11/18/2021 09:43:34 AM
rw-r--r--
📄
duplicate-email.php
1.41 KB
11/18/2021 09:43:35 AM
rw-r--r--
📄
main.php
5.96 KB
11/18/2021 09:43:35 AM
rw-r--r--
📄
save-autoresponder-email.php
7.2 KB
11/18/2021 09:43:35 AM
rw-r--r--
📄
toggle-autoresponder.php
365 bytes
11/18/2021 09:43:35 AM
rw-r--r--
📄
toggle-wysiwyg.php
498 bytes
11/18/2021 09:43:35 AM
rw-r--r--
📄
update-ar-title.php
466 bytes
11/18/2021 09:43:35 AM
rw-r--r--
Editing: update-ar-title.php
Close
<?php include('../functions.php');?> <?php include('../login/auth.php');?> <?php $ares_id = isset($_POST['ares_id']) && is_numeric($_POST['ares_id']) ? mysqli_real_escape_string($mysqli, (int)$_POST['ares_id']) : exit; $ares_title = mysqli_real_escape_string($mysqli, $_POST['ares_title']); //Update campaign title $q = 'UPDATE ares SET name = "'.$ares_title.'" WHERE id = '.$ares_id; $r = mysqli_query($mysqli, $q); if ($r) echo true; else echo false; ?>