|
Server IP : 2a02:4780:11:1017:0:31f1:b895:8 / Your IP : 216.73.216.163 Web Server : LiteSpeed System : Linux in-mum-web917.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u837925013 ( 837925013) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u837925013/domains/tech2wizard.com/public_html/admin/inc/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
include("conn.php");
if($_POST['type']==1){
$get_brand= mysqli_fetch_array($con->query("select * from referral_programme WHERE id='".$_POST['id']."'"));
?>
<table class="ajax_show_table">
<tr>
<th width="50%">Referred By</th>
<td width="50%">: <?php echo $get_brand['referred_by']; ?></td>
</tr>
<tr>
<th width="50%">Name</th>
<td width="50%">: <?php echo $get_brand['name']; ?></td>
</tr>
<tr>
<th width="50%">Phone</th>
<td width="50%">: <?php echo $get_brand['phone']; ?></td>
</tr>
<tr>
<th width="50%">Are you an exisiting partner/technician/manager?</th>
<td width="50%">: <?php echo $get_brand['exisiting']; ?></td>
</tr>
</table>
<hr>
<h4>Client Referring Details--</h4>
<table class="ajax_show_table">
<tr>
<th width="50%">Full Name</th>
<td width="50%">: <?php echo $get_brand['client_name']; ?></td>
</tr>
<tr>
<th width="50%">Mobile Number</th>
<td width="50%">: <?php echo $get_brand['client_phone']; ?></td>
</tr>
<tr>
<th width="50%">Email Address</th>
<td width="50%">: <?php echo $get_brand['client_email']; ?></td>
</tr>
<tr>
<th width="50%">Shop Name</th>
<td width="50%">: <?php echo $get_brand['client_shop_name']; ?></td>
</tr>
<tr>
<th width="50%">Shop Address</th>
<td width="50%">: <?php echo $get_brand['client_shop_address']; ?></td>
</tr>
<tr>
<th width="50%">Image</th>
<td width="50%">: <?php if(!empty($get_brand['image'])){ echo '<a href="'.REFERRAL_SITE_PATH.$get_brand['image'].'"target="_Blank">VIEW</a>';}else{ echo'NAN';} ?></td>
</tr>
</table>
<?php } ?>