
PK 
<?php
//$now_at_dir = getcwd();
include "includes/session_check.php";
include "includes/dbconnect.php";
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Admin AREA - Form</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta http-equiv="Content-Language" content="en" />
<link rel="shortcut icon" type="image/x-icon" href="./img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="./css/webstarter.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/jquery-ui-1.8.13.custom.css" />
<link rel="stylesheet" type="text/css" href="./css/superfish.css" />
<link rel="stylesheet" type="text/css" href="./css/jquery.wysiwyg.css" />
<link rel="stylesheet" type="text/css" href="./css/fullcalendar.css" />
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js"></script> -->
<script type="text/javascript" src="./js/jquery.min.js"></script>
<script type="text/javascript" src="./js/jsapi"></script>
<script type="text/javascript" src="./js/jquery-ui-1.8.13.custom.min.js"></script>
<script type="text/javascript" src="./js/jquery.gvChart-1.0.1.min.js"></script>
<script type="text/javascript" src="./js/jquery.vAlign.js"></script>
<script type="text/javascript" src="./js/jquery.disableSelection.js"></script>
<script type="text/javascript" src="./js/jquery.superfish.js"></script>
<script type="text/javascript" src="./js/fullcalendar.min.js"></script>
<script type="text/javascript" src="./js/gcal.js"></script>
<script type="text/javascript" src="./js/jquery.wysiwyg.js"></script>
<script type="text/javascript" src="./js/ws.init.js"></script>
<!--[if lte IE 6]>
<script type="text/javascript" src="js/jquery.pngFix.js"></script>
<script type="text/javascript" src="js/jquery.pngFix.init.js"></script>
<![endif]-->
<!-- FOR SOME PAGES - i.e. CREATE CERTIFICATE ONLY -->
<!-- <script type="text/javascript" src="jquery/js/jquery-1.4.2.min.js"></script> -->
<script type="text/javascript">
jQuery(document).ready(function(){
$('#exporterslist').autocomplete({source:'includes/suggest_clients.php', minLength:1});
});
jQuery(document).ready(function(){
$('#importerslist').autocomplete({source:'includes/suggest_clients.php', minLength:1});
});
jQuery(document).ready(function(){
$('#agentslist').autocomplete({source:'includes/suggest_agents.php', minLength:1});
});
jQuery(document).ready(function(){
$('#invoicelist').autocomplete({source:'includes/suggest_invoice.php', minLength:1});
});
jQuery(document).ready(function(){
$('#companylist').autocomplete({source:'includes/suggest_company.php', minLength:1});
});
</script>
<link rel="stylesheet" href="css/smoothness/jquery-ui-1.8.2.custom.css" />
<meta charset="UTF-8">
<style>
.navbar {
overflow: hidden;
background-color: #333;
font-family: Arial;
}
.navbar a {
float: left;
font-size: 14px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 14px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: red;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.select2-results__option {
text-align: left !important;
border-bottom: 1px dotted #cccccc;
font-size: 11px;
padding: 4px 2px;
}
</style>
</head>
<body>
<div id="bgTop">
<div id="core">
<div id="bgBottom">


PK 99