/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// cross product function neo_percent($total, $rapport){ if($total > 0){ $percent = ( 100 * $rapport) / $total ; }else{ $percent = 0; } }