I have just started using HTML5, so I went through its new attribute and came up to the progress bar feature. I want to implement it with my PHP and MySQL report. I would like to show the progress bar while the row gets fetched from my query into the php report so can any one help in showing of how it can be done ??? Here is my simple report code:
$query = mysql_query("SELECT * FROM `table`")or die(mysql_error());
while($row = mysql_fetch_assoc($query)){
/***My report code**/
}
<progress value="22" max="100"></progress>