|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/klengineers/klwebsite-controller/includes/ |
Upload File : |
<?php
if(isset($_REQUEST['main']))
$msg="Go to Category Page to Delete This One";
if(isset($_REQUEST['updated']))
$msg="Updated Successfully";
if(isset($_REQUEST['position']))
$message="Updated Positions Successfully";
if(isset($_REQUEST['added']))
$msg="Added Successfully";
if(isset($_REQUEST['deleted']))
$msg="Deleted Successfully";
if(isset($_REQUEST['required']))
$msg="Enter all * fields";
if(isset($_REQUEST['misMatch']))
$msg="Passwords don't match";
if(isset($_REQUEST['invalidEmail']))
$msg="Enter valid email";
if(isset($_REQUEST['invalidImage']))
$msg="Invalid Image";
if(isset($_REQUEST['invalid']))
$msg="Error try again";
if(isset($_REQUEST['msgSent']))
$msg="Message Sent";
if(isset($_REQUEST['feat']))
$msg="Featured Thumb Added Successfully";
if($msg!=""){
print "<div style='background-color:#FFFF99;width:50%;margin-left:auto;margin-right:auto;".
"font-size:12px;height:20px;text-align:center;color:#000000'>";
echo "<b>$msg</b>";
print "</div>";
}
if(isset($message) && $message!=""){
print "<div style='background-color:#FFFF99;width:50%;margin-left:auto;margin-right:auto;".
"font-size:12px;height:20px;text-align:center;color:#000000'>";
echo "<b>$message</b>";
print "</div>";
}
?>