Server IP : 103.53.40.154 / Your IP : 18.191.129.241 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/ppcad7no/ambicaengineeringworks.in/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php ob_start(); require_once("includes/dbsmain.inc.php"); $sql_comp_detail=db_query("select admin_site_down,admin_site_down_message from tbl_admin where 1"); if(mysqli_num_rows($sql_comp_detail)>0){ $sitedownDATA=mysqli_fetch_array($sql_comp_detail); } if($sitedownDATA['admin_site_down']!='Yes'){ header("location:index.php"); exit; } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Site Down</title> </head> <body bgcolor="#E9FFD2"> <div align="center" style="font-size:36px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; margin-top:230px; border:1px outset #fff; background-color:#F5F5F5; padding:15px;"><?=$sitedownDATA['admin_site_down_message'];?></div> </body> </html>