| Server IP : 104.21.21.239 / Your IP : 216.73.216.25 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/mitzvahm/wwwdevplanner/admin/ |
Upload File : |
<?php
include('mod/_header.php');
//ini_set('session.use_cookies', 1);
/*
*/
if (session_id() == '')
{
$_SESSION['admin_logged_in'] = 0;
$_SESSION['admin_roles'] = '';
}
$ix = $_GET['IX'];
/*
*/
if (trim($ix) == '')
{
if ($_SESSION['admin_logged_in'] == 1)
$ix = 'home';
else
$ix = 'login';
}
?>
<!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>
<!--<link type="text/css" href="css/south-street/jquery-ui-1.8.1.custom.css" rel="stylesheet" />-->
<link rel="stylesheet" href="css/main.css" type="text/css" >
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="mitzvah, organizer, planner, bar mitzvah, bat mitzvah" />
<title>MitzvahOrganizer - Administration</title>
<!--<link type="text/css" href="css/custom-theme/jquery-ui-1.8.16.custom.css" rel="stylesheet" />-->
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<!--<script type="text/javascript" src="js/jquery-ui-1.8.16.custom.min.js"></script>-->
<script type="text/javascript" src="js/jquery.form.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<div class="main">
<?php include('mod/_pagetop.php'); ?>
<div class="main_wrapper">
<h1><?php echo get_page_title($ix); ?></h1>
<div class="cleardiv">
</div>
<div class="menu_wrapper">
<?php include('mod/_menu.php'); ?>
</div>
<div class="content_wrapper">
<div class="content">
<?php $authorized_call = 1; include('mod/'.$ix.'.php'); ?>
</div>
</div>
<div class="cleardiv">
</div>
<div style="text-align:center; font-size:11px; line-height:16px; background-color:#FFFFFF; margin:10px; margin-top:0px;">
Copyright © 2013 MitzvahOrganizer.com<br />
This site developed by <a href="http://www.latcomsystems.com" target="_blank">www.latcomsystems.com</a>
</div>
</div>
</div>
<div class="spacer">
</div>
</body>
<?php
if ($con)
mysqli_close($GLOBALS['con']);
?>
</html>