Copy this code and paste it in your HTML
// Usage progress($currentPostion,$totalResults);
function progress($current,$total,$label = "")
{
if($current == 0)
{
if($label == "")
{
}else{
}
}else{
echo $current . " of " . $total;
$totalBackspaces = 4;
$totalBackspaces += strlen($current . "");
$totalBackspaces += strlen($total . "");
for($i=1;$i <= $totalBackspaces;$i++)
{
}
}
}