consegui hacer un progress bar para la siguiente funcion, el problema esta q no lo carga uno a uno sino q cuando acaba de hacer la consulta muestra la progress bar entera
Alguien sabe donde esta mi error?
Código PHP:
<?
actualizame();
function actualizame()
{
$sql="SELECT * FROM tabla";
$res=mysql_query($sql);
$numeroRegistros=mysql_num_rows($res);
if($numeroRegistros<=0)
{
echo "<div align='center'>";
echo "<font face='verdana' size='-2'>No Hay Resultados</font>";
echo "</div>";
}
else
{
echo "<div id='progress' style='position:relative;padding:0px;width:450px;height:60px;left:25px;'>";
while($registro=mysql_fetch_array($res)){
echo "<div style='float:left;margin:5px 0px 0px 1px;width:2px;height:12px;background:red;color:red;'> </div>";
flush();
ob_flush();
$campo1=$registro["campo1"];
$sql="INSERT INTO tabla(campos)
VALUES ('".$campos."')";
$res1=mysql_query($sql);
if(!$res1){
echo mysql_error();
}
}//fi while
echo "</div>";
echo "<script>document.getElementById('progress').style.display = 'none'</script>";
}//fi if
}//fi function