Simple Example of PHP progress bar function, php progress bar Function
Simple Example of PHP progress bar Function
In fact, the progress bar is very simple. I wrote one on the Internet. Haha, it looks like a lot.
Instance code:
Function ShowPercent ($ now, $ total) {$ percent = sprintf ('%. 0f', $ now * 100/$ total); $ html = '<table width = "60%" style = "border-collapse: separate "height =" 10 "border =" 0 "cellpadding =" 0 "cellspacing =" 2 "bgcolor =" # fff "> <tr> '; $ count = 0; $ pertr = 30; while ($ count <$ total) {$ bgcolor = $ count <$ now? 'Green': '# EEEEEE'; $ html. = '<td bgcolor = "'. $ bgcolor. '"> </td>'; $ count ++; if ($ count % $ pertr = 0) $ html. = '</tr> <tr>';} $ bgcolor2 = $ now = $ total? 'Style = "font-weight: bold; color: green;" ': ''; $ html. = '<td '. $ bgcolor2. 'colspan = "'. ($ count % $ pertr ). '"> '. $ percent. '% </td> </tr> </table>'; return $ html ;}
Effect: 100%.
If you have any questions, please leave a message or go to the community on this site for discussion. Thank you for reading this article. Thank you for your support!