Home  >  Article  >  Backend Development  >  php 怎么做进度条

php 怎么做进度条

WBOY
WBOYOriginal
2016-06-13 11:53:511314browse

php 如何做进度条


进度是根据mysql数据库取出的数据而定的

进度条上如上图一般,时刻显示取出的数据条数。。
------解决方案--------------------
JS,css控制
------解决方案--------------------
nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



无标题文档




    
 

  


set_time_limit(0);
$step = 0;

for ($i = 0; $i   sleep(1); //这个是为了测试
  $step+=10; //实际步点你自己掌握
  echo '<script> document.getElementById("jindu").style.width = "'.$step.'px"; </script>';
  ob_flush(); //这个是为了测试
  flush(); //这个是为了测试 
}
?>


------解决方案--------------------
进度条理解成用颜色填充的div 什么的就可以了..
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn