%PDF- %GIF98; %PNG;
 
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin/  | 
Upload File :  | 
<?php
include "top.php";
?> 
<div class="content-wrapper"> 
<section class="content-header sty-one">
<h1>leads</h1>
<ol class="breadcrumb">
<li><a href="dashboard.php">Home</a></li>
<li><i class="fa fa-angle-right"></i> leads</li>
</ol>
</section>
<section class="content">
<div class="table-responsive">
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th>ID</th>
<th>Centre Name</th>
<th>Treatment</th>
<th>Name</th>
<th>City</th>
<th>Phone</th>
<th>Email</th>
<th>Date</th>
<th>Remark</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
$query="select * from leads order by date";
$result=mysqli_query($c,$query);
while($row	=	mysqli_fetch_array($result))
{	
?>
<tr>
<td><?php echo $i++;?></td>
<td><?php echo $row['centrename'];?></td>
<td><?php echo $row['treatment'];?></td>
<td><?php echo $row['names'];?></td>
<td><?php echo $row['city'];?></td>
<td><?php echo $row['phone'];?></td>
<td><?php echo $row['email'];?></td>
<td><?php echo $row['date'];?></td>
<!--<td><?php echo $row['purchased'];?></td>-->
<td><a href="leadsedit.php?id=<?php echo $row['id'];?>" class="btn btn-outline btn-default"  title="Active"><i class="fa fa-pencil"></i></a></td>
</tr>
<?php
}
?>
</table>
</div>
</section>
<?php
include "footer.php";
?>