Sir I am using these codes
[PHP]
Filter
ID |
Name |
Mobile |
City |
Country |
<?php
$sql = "SELECT * from contacts order by name" ;
$select = mysqli_query($con, $sql);
$run_sel = mysqli_fetch_array($select);
$row=mysqli_num_rows($select);
//echo ($row);
$a = 1;
while($a<=$row)
{
echo "";
echo "
| ";
echo " " . $run_sel["name"]. " | ";
echo " " . $run_sel["moba"]. " | ";
echo " " . $run_sel["city"]. " | ";
echo " " . $run_sel["country"] . " | ";
echo "
";
$run_sel = mysqli_fetch_array($select);
$a++;
}
?>
[/PHP]
These code display following data

Now I want to apply incremental search with Filter box.
For example:
If I type “B” then all matching records (name field in table) which begins with “B” must appear in display list.
Please help