Current File : /home/inlingua/www/sensoriumpsychologists.com/franchise/franchise_view_profile.php |
<?php
include_once('../classes/config.php');
include_once('common/session.php');
$franchise_id=$session_row['franchise_id'];
$resultss=$query->select_where_field('shristi_franchise_detail','franchise_id',$franchise_id,'AND status="1"' );
$row=$resultss->fetch_assoc();
?>
<?php include_once("common/head_links.php");?>
<?php include_once("common/header.php");?>
<?php include_once("common/left_side_bar.php");?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1> View/Update Profile</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<table class="franchise_p table table-striped">
<tr>
<td colspan="11"> <h1>Franchise's Profile</h1></td></tr>
<tr >
<th>Name</th>
<td> <?php echo $session_row['name'] ?></td>
<td colspan="4" rowspan="21"></td>
</tr>
<tr >
<th>Registration No.</th>
<td><?php echo $session_row['code'] ?></td>
</tr>
<tr >
<th>Registration Start Date</th>
<td><?php echo $session_row['expired_date'] ?></td>
</tr>
<tr >
<th>Registration End Date</th>
<td><?php echo $session_row['created_at'] ?></td>
</tr>
<tr >
<th>Contact No.</th>
<td><?php echo $session_row['mobile'] ?></td>
</tr>
<tr >
<th>Office Contact No.</th>
<td><?php echo $row['office_no'] ?></td>
</tr>
<tr >
<th>Email ID</th>
<td><?php echo $session_row['email'] ?></td>
</tr>
<tr >
<th>Educational Qualification Promoter/Partner/Individual</th>
<td><?php echo $row['educational_qualification'] ?></td>
</tr>
<tr >
<th>Institute</th>
<td><?php echo $row['institute'] ?></td>
</tr>
<tr >
<th>Pan No.</th>
<td><?php echo $row['pan_no'] ?></td>
</tr>
<tr >
<th>Occupation</th>
<td><?php echo $row['f_occupation'] ?></td>
</tr>
<tr >
<th>Nature Of Work</th>
<td><?php echo $row['nature_of_work'] ?></td>
</tr>
<tr >
<th>Permanent Address</th>
<td><?php echo $row['address'] ?></td>
</tr>
<tr >
<td colspan="2"><b>For Persons In Business</b></td>
</tr>
<tr>
<th>Company Name(s) </th>
<td><?php echo $row['company_name'] ?></td>
</tr>
<tr >
<th>Ownership Prop./Pvt. Partner</th>
<td><?php echo $row['b_ownership'] ?></td>
</tr>
<tr >
<th>Nature of Business</th>
<td><?php echo $row['nature_of_business'] ?></td>
</tr>
<tr>
<th>Principal Product/Brand </th>
<td><?php echo $row['principal'] ?></td>
</tr>
<tr>
<th>Years in Business </th>
<td><?php echo $row['year_of_business'] ?></td>
</tr>
<tr>
<th>Annual Turnover (Current Fiscal YR) </th>
<td><?php echo $row['annual_turnover'] ?></td>
</tr>
<tr >
<td colspan="2"><b>For Persons In Service</b></td>
</tr>
<tr>
<th>Name of Current Employer </th>
<td><?php echo $row['current_employer'] ?></td>
</tr>
<tr >
<th>Designation</th>
<td><?php echo $row['designation'] ?></td>
</tr>
<tr >
<th>Job Profile</th>
<td><?php echo $row['job_profile'] ?></td>
</tr>
<tr>
<td colspan="11"> <h3>Franchise Details</h3></td>
</tr>
<tr >
<td colspan="6"><b>Existing Franchise Details</b></td>
</tr>
<tr >
<th><strong>City for Franchise</strong></th>
<th><strong>Location</strong></th>
<th><strong>Area (Square Feets)</strong></th>
<th><strong>Area on Hire/Lease/Loan</strong></th>
<th><strong>Prop. / Partnership / Pvt. Ltd.</strong></th>
</tr>
<tr >
<td><?php echo $row['city'] ?></td>
<td><?php echo $row['location'] ?></td>
<td><?php echo $row['ex_area'] ?></td>
<td><?php echo $row['ex_area_on_hire'] ?></td>
<td><?php echo $row['ex_ownership'] ?></td>
</tr>
<tr >
<td colspan="6"><b>Proposed Franchise Details</b></td>
</tr>
<tr >
<th><strong>Intersted City</strong></th>
<th><strong>Proposed Location</strong></th>
<th><strong>Area (Square Feets)</strong></th>
<th><strong>Area on Hire/Lease/Loan</strong></th>
<th><strong>Prop. / Partnership / Pvt. Ltd.</strong></th>
</tr>
<tr >
<td><?php echo $row['intersted_city'] ?></td>
<td><?php echo $row['proposed_location'] ?></td>
<td><?php echo $row['proposed_area'] ?></td>
<td><?php echo $row['proposed_area_on_hire'] ?></td>
<td><?php echo $row['proposed_ownership'] ?></td>
</tr>
</table>
<div class="row">
<div class="col-md-12">
<button type="button" onClick="window.location.href='index.php'" class="btn btn-warning" style="margin-right:10px;margin-top:10px;">Back</button>
<a href="franchise_edit_profile.php" class=" btn btn-success" style="margin-top:10px;">Edit</a>
</div>
</div>
</div>
</div>
</section>
<!-- /.content -->
</div><!-- /.content-wrapper -->
<?php include_once("common/footer.php");?>
</div><!-- ./wrapper -->
<?php include_once("common/footer_links.php");?>
</body>
</html>