Guest User

Untitled

a guest
Jul 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?
  2.  
  3. $anzahl = 1;
  4. $all = 5;
  5.  
  6. $durchschnitt = $all / $anzahl;
  7. $prozent = ($durchschnitt-1)/4*100;
  8.  
  9. if($prozent == 0) { $x = 0; }
  10. elseif($prozent >= 0) { $x = 12; }
  11. elseif($prozent >= 1) { $x = 24; }
  12. elseif($prozent >= 2) { $x = 36; }
  13. elseif($prozent >= 3) { $x = 48; }
  14. elseif($prozent >= 4) { $x = 59; }
  15.  
  16. ?>
  17.  
  18.  
  19.  
  20. <div style="background:url(../img/rating_min.png) no-repeat; height: 12px; width: 59px;">
  21. <div style="background:url(../img/rating_max.png) no-repeat; width: <?=$x?>px; height: 12px;">
  22. </div>
  23. </div>
Add Comment
Please, Sign In to add comment