chriscloyd Posted January 9, 2007 Share Posted January 9, 2007 how do i make like a percent bar say if we have 33 task to do on a project and we have 21 donehow could i go about making a bar show that its 63% complete i have the whole rest of the project management script done im just having trouble with makeing the image Link to comment https://forums.phpfreaks.com/topic/33456-project-management-script/ Share on other sites More sharing options...
taith Posted January 9, 2007 Share Posted January 9, 2007 not tested... but this should work...[code]<style>table{border:black 1px solid;}.finished{background:red;}</style><?$total=100;$finished=21;echo '<table><tr>';for($i=0;$i<=$total;$i++){ if($finished>$i) echo '<td class=finished></td>' else echo '<td class=unfinished></td>'}echo '</tr></table>';?>[/code] Link to comment https://forums.phpfreaks.com/topic/33456-project-management-script/#findComment-156605 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.