OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
znew1aws-ses
/
vendor
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/16/2024 08:24:03 AM
rwxr-xr-x
📄
_get.section.collection.php
58.55 KB
08/16/2024 08:24:09 AM
rw-r--r--
📄
_get.section.create.php
21.82 KB
08/16/2024 08:24:09 AM
rw-r--r--
📄
_get.section.general.php
8.06 KB
08/16/2024 08:24:09 AM
rw-r--r--
📄
autoload.php
771 bytes
08/16/2024 08:24:04 AM
rw-r--r--
📁
aws
-
08/16/2024 08:24:15 AM
rwxr-xr-x
📁
bin
-
08/16/2024 08:24:09 AM
rwxr-xr-x
📄
chk.logged.in.php
1.16 KB
08/16/2024 08:24:04 AM
rw-r--r--
📄
chk.login.php
1.31 KB
08/16/2024 08:24:04 AM
rw-r--r--
📁
composer
-
08/16/2024 08:24:12 AM
rwxr-xr-x
📄
d_get.section.collection.php
57.93 KB
08/16/2024 08:24:05 AM
rw-r--r--
📄
d_get.section.create.php
21.87 KB
08/16/2024 08:24:05 AM
rw-r--r--
📄
get.section.account.php
8.47 KB
08/16/2024 08:24:06 AM
rw-r--r--
📄
get.section.analytics.php
11.46 KB
08/16/2024 08:24:06 AM
rw-r--r--
📄
get.section.collection.php
58.52 KB
08/16/2024 08:24:06 AM
rw-r--r--
📄
get.section.community.php
5.89 KB
08/16/2024 08:24:06 AM
rw-r--r--
📄
get.section.create.php
22.41 KB
08/16/2024 08:24:06 AM
rw-r--r--
📄
get.section.curated.php
5.07 KB
08/16/2024 08:24:06 AM
rw-r--r--
📄
get.section.dashboard.php
3.31 KB
08/16/2024 08:24:07 AM
rw-r--r--
📄
get.section.feed.php
6.87 KB
08/16/2024 08:24:07 AM
rw-r--r--
📄
get.section.general.php
9.31 KB
08/16/2024 08:24:07 AM
rw-r--r--
📄
get.section.newsletter.php
9.25 KB
08/16/2024 08:24:07 AM
rw-r--r--
📄
get.section.request.article.php
5.82 KB
08/16/2024 08:24:08 AM
rw-r--r--
📄
get.section.settings.php
21.15 KB
08/16/2024 08:24:08 AM
rw-r--r--
📄
get.section.team.php
6.73 KB
08/16/2024 08:24:08 AM
rw-r--r--
📄
get.section.utils.php
4.1 KB
08/16/2024 08:24:08 AM
rw-r--r--
📁
guzzlehttp
-
08/16/2024 08:24:20 AM
rwxr-xr-x
📄
logout.php
428 bytes
08/16/2024 08:24:08 AM
rw-r--r--
📁
mtdowling
-
08/16/2024 08:24:22 AM
rwxr-xr-x
📁
phpmailer
-
08/16/2024 08:24:24 AM
rwxr-xr-x
📁
psr
-
08/16/2024 08:24:28 AM
rwxr-xr-x
📁
ralouphie
-
08/16/2024 08:24:29 AM
rwxr-xr-x
📄
sendgrid.php
3.62 KB
08/16/2024 08:24:08 AM
rw-r--r--
📁
symfony
-
08/16/2024 08:24:30 AM
rwxr-xr-x
📄
upload.php
2.4 KB
08/16/2024 08:24:08 AM
rw-r--r--
📄
verify.php
3.12 KB
08/16/2024 08:24:08 AM
rw-r--r--
📄
verify_email.php
7.13 KB
08/16/2024 08:24:09 AM
rw-r--r--
📁
wildbit
-
08/16/2024 08:24:30 AM
rwxr-xr-x
📄
z.get.section.feed.php
6.88 KB
08/16/2024 08:24:09 AM
rw-r--r--
Editing: get.section.request.article.php
Close
<? // Cream: Request Article require_once '../inc/validate.logged.php'; require_once '../inc/config.php'; $act = ''; if (!empty($_POST)) $act = isset($_POST["act"]) ? $_POST["act"] : ''; // Create Post if ($act == 'sendRequest') { $articleHeadline = isset($_POST['articleHeadline']) ? $_POST['articleHeadline'] : ''; $articleObjective = isset($_POST['articleObjective']) ? $_POST['articleObjective'] : ''; $articleTargetGroup = isset($_POST['articleTargetGroup']) ? $_POST['articleTargetGroup'] : ''; $articleKeywords = isset($_POST['articleKeywords']) ? $_POST['articleKeywords'] : ''; $articleNumWords = isset($_POST['articleNumWords']) ? $_POST['articleNumWords'] : ''; $articleNumImages = isset($_POST['articleNumImages']) ? $_POST['articleNumImages'] : ''; $articleOutline = isset($_POST['articleOutline']) ? $_POST['articleOutline'] : ''; $articlePrimarySource = isset($_POST['articlePrimarySource']) ? $_POST['articlePrimarySource'] : ''; $articleSecondarySource = isset($_POST['articleSecondarySource']) ? $_POST['articleSecondarySource'] : ''; if ($articleHeadline != '' && $articleObjective != '') { $tmpHTML = ""; $tmpHTML .= "<html>"; $tmpHTML .= "<body>"; $tmpHTML .= "<div style=\"font-family:Arial;font-size:12px;\">\r\n"; $tmpHTML .= "The following has been requested from Knobly Cream:<br><br>\r\n"; $tmpHTML .= "<b>Request by:</b><br>\r\n"; $tmpHTML .= "$gUserName [$gUserEmail]<br><br>\r\n"; $tmpHTML .= "<b>Headline:</b><br>\r\n"; $tmpHTML .= "$articleHeadline<br><br>\r\n"; $tmpHTML .= "<b>Objective:</b><br>\r\n"; $tmpHTML .= "$articleObjective <br><br>\r\n"; $tmpHTML .= "<b>Target Group:</b><br>\r\n"; $tmpHTML .= "$articleTargetGroup <br><br>\r\n"; $tmpHTML .= "<b>Keywords:</b><br>\r\n"; $tmpHTML .= "$articleKeywords<br><br>\r\n"; $tmpHTML .= "<b>Number of words:</b><br>\r\n"; $tmpHTML .= "$articleNumWords<br><br>\r\n"; $tmpHTML .= "<b>Number of Pictures/Graphics/etc.:</b><br>\r\n"; $tmpHTML .= "$articleNumImages<br><br>\r\n"; $tmpHTML .= "<b>Outline:</b><br>\r\n"; $tmpHTML .= "$articleOutline<br><br>\r\n"; $tmpHTML .= "<b>Primary Source:</b><br>\r\n"; $tmpHTML .= "$articlePrimarySource<br><br>\r\n"; $tmpHTML .= "<b>Secondary Source:</b><br>\r\n"; $tmpHTML .= "$articleSecondarySource<br><br>\r\n"; $tmpHTML .= "Warm Regards,<br>\r\n"; $tmpHTML .= "Knobly Cream<br>\r\n"; $tmpHTML .= "</body>"; $tmpHTML .= "</html>"; sendEmail('Prashanth Hebbar', 'prashanth@knobly.com', '', 'Knobly Cream: Request Article', $tmpHTML); echo 'Thank you for your submission!<br>We will get back to you at the earliest.'; } } // Default if ($act == '') { ?> <ol class="breadcrumb my-3"> <li class="breadcrumb-item"><h4 class="m-0">Request Article</h4></li> </ol> <div id="panelRequestArticleHeader" class="row mb-4 p-2"> <div class="col"> Fill up the form to help our writers understand your requirement. Charges are applicable.<br> Fields marked with <span class="txtRed">*</span> are mandatory.<br> </div> </div> <div class="row mb-4 p-2"> <div id="panelRequestArticle" class="col"> <form id="frmArticle"> <div class="form-row"> <div class="form-group col-12 col-md-6"> <label for="postTitle">Headline<sup class="txtRed"><big>*</big></sup></label> <input type="text" class="form-control px-2 py-4" id="articleHeadline" name="articleHeadline" maxlength="100" /> </div> <div class="form-group col-12 col-md-6"> <label for="postTitle">Objective<sup class="txtRed"><big>*</big></sup></label> <input type="text" class="form-control px-2 py-4" id="articleObjective" name="articleObjective" maxlength="100" /> </div> </div> <div class="form-row"> <div class="form-group col-12 col-md-6"> <label for="postTitle">Target Group<sup class="txtRed"><big>*</big></sup></label> <input type="text" class="form-control px-2 py-4" id="articleTargetGroup" name="articleTargetGroup" maxlength="100" /> </div> <div class="form-group col-12 col-md-6"> <label for="postTitle">Keywords<sup class="txtRed"><big>*</big></sup></label> <input type="text" class="form-control px-2 py-4" id="articleKeywords" name="articleKeywords" maxlength="100" /> </div> </div> <div class="form-row"> <div class="form-group col-12 col-md-6"> <label for="postTitle">Number of words<sup class="txtRed"><big>*</big></sup></label> <input type="text" class="form-control px-2 py-4" id="articleNumWords" name="articleNumWords" maxlength="100" /> </div> <div class="form-group col-12 col-md-6"> <label for="postTitle">Number of Pictures/Graphics/etc.<sup class="txtRed"><big>*</big></sup></label> <input type="text" class="form-control px-2 py-4" id="articleNumImages" name="articleNumImages" maxlength="100" /> </div> </div> <div class="form-row"> <div class="form-group col"> <label for="postTitle">Outline</label> <textarea class="form-control" id="articleOutline" name="articleOutline"></textarea> </div> </div> <div class="form-row"> <div class="form-group col-12 col-md-6"> <label for="postTitle">Primary source</label> <textarea class="form-control" id="articlePrimarySource" name="articlePrimarySource"></textarea> </div> <div class="form-group col-12 col-md-6"> <label for="postTitle">Secondary source</label> <textarea class="form-control" id="articleSecondarySource" name="articleSecondarySource"></textarea> </div> </div> <div class="mt-3"> <div class="float-left"><button type="button" class="btn btn-primary" onclick="chkRequestArticle()">Send Request</button></div> <div class="float-left ml-4 pt-2"><div id="panelStatusRequestArticle"></div></div> </div> <input type="hidden" id="act" name="act" value="sendRequest" /> </form> </div> </div> <? } ?>