| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/rsdgroup/ajax/ |
Upload File : |
<?php
include_once("../conf/settings.php");
include_once("../conf/func.php");
$Location_Id = $_REQUEST['Location_Id'];
if($Location_Id)
{
$locatorList = getAllLocatorListByLocationId($Location_Id);
}
?>
<?php
if(count($locatorList)>0) {
?>
<div class="branchMapBox">
<?php
foreach($locatorList as $locator)
{
?>
<div class="branchLocatetxt">
<table width="100%" cellspacing="0" cellpadding="0" border="0" class="locatetable">
<tbody><tr>
<th width="30%" valign="top">Store Location</th>
<td width="70%" valign="top"><?php echo $locator['location'];?></td>
</tr>
<?php if($locator['store_code']) { ?>
<tr>
<th valign="top">Store Code</th>
<td valign="top"><?php echo $locator['store_code'];?></td>
</tr>
<?php } ?>
<?php if($locator['store_model']) { ?>
<tr>
<th valign="top">Model</th>
<td valign="top"><?php echo $locator['store_model'];?></td>
</tr>
<?php } ?>
<?php
if($locator['contact_person']) {
?>
<tr>
<th valign="top">Contact Person</th>
<td valign="top"><?php echo $locator['contact_person'];?></td>
</tr>
<?php } ?>
<?php if($locator['mobile_no_1']) { ?>
<tr>
<th valign="top">Mobile No</th>
<td valign="top"><?php echo $locator['mobile_no_1'];?> <?php if($locator['mobile_no_1']) { echo ", ".$locator['mobile_no_1']; } ?> </td>
</tr>
<?php } ?>
<?php
if($locator['address']) {
?>
<tr>
<th valign="top">Address with PIN Code</th>
<td valign="top"><?php echo $locator['address'];?></td>
</tr>
<?php } ?>
</tbody></table>
</div>
<div class="cl"></div>
<?php } ?>
</div>
<?php } ?>