<input type="text" id="myInput" class="form-control" onkeyup="myFunction()" placeholder="Seach For Data..." title="Type in a name">
<table id="myTable" class="table table-bordered table-striped table-condensed cf">
<thead class="cf">
<tr id="headingTR" style="display:yes">
<th style="text-align:center">Application No.</th>
<th style="display:none;">ID</th>
<th style="width:15%;text-align:center" class="numeric">Name</th>
<th style="width:5%;text-align:center" class="numeric">Moblile No.</th>
<th style="width:45%;text-align:center" class="numeric">Detail</th>
<th style="width:10%;text-align:center" class="numeric">Tag</th>
<th style="width:5%;text-align:center" class="numeric">Status</th>
<th style="width:10%;text-align:center" >Download</th>
<th style="width:15%;text-align:center" class="numeric">Action</th>
</tr>
<tr id="noRecordTR" style="display:none">
<td>No Data</td>
</tr>
</thead>
<tbody id="data">
<?php
include("pagination/function1.php");
$page = (int) (!isset($_GET["page"]) ? 1 : $_GET["page"]);
$limit = 5; //if you want to dispaly 10 records per page then you have to change here
$startpoint = ($page * $limit) - $limit;
$sql_block = "SELECT * FROM citizen_request ORDER BY sno DESC LIMIT $startpoint, $limit";
$block_data = mysqli_query($con,$sql_block);
while($row = mysqli_fetch_assoc($block_data) ){
$id = $row['sno'];
$name = $row['name'];
$mobile = $row['mobile'];
$description = $row['description'];
$remark = $row['remark'];
$uniqueid = $row['id'];
$status = $row['status'];
$file = $row['file'];
if ($file=="")
{
$file="blank.php";
}
?>
<tr>
慕哥9229398