
PK 
<?php
//error_reporting(E_ALL);
@ini_set('display_errors','off');
@session_start();
require_once 'common/common.php';
if($_SESSION['city']=='amritser'){
$ctyenter="Amritsar";
}elseif($_SESSION['city']=='ludhiana'){
$ctyenter="Ludhiana";
}else{
$ctyenter="Ludhiana";
}
function getColumn($table, $field, $val, $col, $orderby=""){
if($orderby!=""){
$or=" order by ".$orderby;
}
$q="select $col from $table where $field='$val' $or";
$q=mysql_query($q) or die(mysql_error());
if($r=mysql_fetch_array($q)){
return $r[0];
}else{
return false;
}
}
?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<script type="text/javascript" src="<?php echo get_root(); ?>/common/jquery-1.3.2.min.js"></script>
<title>2018-19 MEMBERS AREA</title>
<link rel="stylesheet" href="<?php echo get_root(); ?>/jquery-ui.css" />
<script src="<?php echo get_root(); ?>/jquery-1.8.2.js"></script>
<script src="<?php echo get_root(); ?>/jquery-ui.js"></script>
<script>
$(function() {
$( "#issuedate" ).datepicker({
changeMonth: true,
numberOfMonths: 2,
dateFormat: "yy-mm-dd",
onClose: function( selectedDate ) {
$( "#frm" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
</script>
<!-- <link rel="stylesheet" href="autocomplete.css" type="text/css" media="screen">
<script src="jquery.js" type="text/javascript"></script>
<script src="dimensions.js" type="text/javascript"></script>
<script src="autocomplete.js" type="text/javascript"></script> -->
<!-- FOR SOME PAGES - i.e. CREATE CERTIFICATE ONLY -->
<script type="text/javascript" src="jquery.min_google.js"></script>
<script type="text/javascript" src="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">
jQuery(document).ready(function(){
$('#exporterslist').autocomplete({source:'suggest_exporters.php', minLength:1});
});
jQuery(document).ready(function(){
$('#importerslist').autocomplete({source:'suggest_clients.php', minLength:1});
});
jQuery(document).ready(function(){
$('#agentslist').autocomplete({source:'suggest_agents.php', minLength:1});
});
</script>
<link rel="stylesheet" href="css/smoothness/jquery-ui-1.8.2.custom.css" />
<style type="text/css"><!--
/* style the auto-complete response */
li.ui-menu-item { font-size:12px !important; }
--></style>
<link rel="stylesheet" type="text/css" href="<?php echo get_root(); ?>/template.css" media="screen" />
<link rel="stylesheet" type="text/css" href="<?php echo get_root(); ?>/template2.css" media="screen" title="Rustico" />
<link rel="stylesheet" type="text/css" href="<?php echo get_root(); ?>/content.css" media="screen" title="Rustico" />
<link rel="stylesheet" type="text/css" href="<?php echo get_root(); ?>/core.css" media="screen" />
<link rel="stylesheet" type="text/css" href="<?php echo get_root(); ?>/errors.css" media="screen" />
<!-- my jquery starts -->
<script>
$().ready(function() {
$("#main_tbl tr:odd").css("background-color","#efefef");
$("#main_tbl tr:even").css("background-color","#dfdfdf");
$("#main_tbl tr").mouseover(function(){
oldcolor=$(this).css("background-color");
$(this).css("background-color","#d7f3f7");
})
$("#main_tbl tr").mouseout(function(){
//alert(oldcolor);
$(this).css("background-color", oldcolor);
})
});
</script>
<!-- my jquery ends -->
</head>
<body id="mozilla-com" class="" >
<!-- start #header -->
<div id="header" style="margin-left: 0px;"'>
<div>
<h1><a href="members_area.php" title="Back to home page"><img src="<?php echo get_root(); ?>/images/logo.jpg" alt="Anibs Solutions" /></a></h1>
<!-- start #nav-main -->
<ul id="nav-main">
<li id="menu_products"><a href="<?php echo get_root(); ?>/members_area.php">Home</a></li>
<li id="menu_addons"><a href="<?php echo get_root(); ?>/certificate.php">Certificate Form</a></li>
<li id="menu_addons"><a href="<?php echo get_root(); ?>/sub_certificate.php">Sub Certificate Form</a></li>
<li id="menu_support"><a href="<?php echo get_root(); ?>/search.php">Search</a></li>
<li id="menu_developers"><a href="<?php echo get_root(); ?>/clients.php">Clients</a></li>
<!-- <li id="menu_aboutus"><a href="<?php echo get_root(); ?>/billing.php">Billing</a></li>
<li id="menu_aboutus"><a href="<?php echo get_root(); ?>/accounts/tax_report.php?action=tax&staff=login">Tax</a></li> -->
</ul>
<!-- end #nav-main -->
</div>
<hr />
</div>
<!-- end #header -->
<div id="breadcrumbs">
<div><a href="<?php echo get_root(); ?>/?action=logout">Logout</a> »<span style="margin-left: 780px;"><?=$ctyenter; ?></span></div>
</div>
<?php echo'<div id="content">';?>


PK 99