PK

ADDRLIN : /home/anibklip/pcfcindia.com/backup14/
FLL :
Current File : /home/anibklip/pcfcindia.com/backup14/head.php

<?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>MEMBERS AREA</title>

	<!-- <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" />
</head>

<body id="mozilla-com" class="" >

    <!-- start #header -->
    
<div id="header" style="margin-left: 0px;"'> 
  <div> 
    <h1><a href="#" title="Back to home page"><img src="<?php echo get_root(); ?>/logo.jpg" height="38" width="89" 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(); ?>/logout.php">Logout</a> &#187;<span> <strong>YOU ARE WORKING ON BACKUP 2013-14</strong></span><span style="margin-left: 530px;"><?=$ctyenter; ?></span></div>
</div>
<?php echo'<div id="content">';?>


PK 99