PHP gevorderde |
|
De functie moet denk ik zoiets zijn:
poll.php - class poll
function imgPXL($tot, $opt)
{
$pro = $tot / 100;
if($pro != 0) $num = $opt / $pro;
else return false;
return (int) $num;
}
function imgPXL($tot, $opt) { $pro = $tot / 100; if($pro != 0) $num = $opt / $pro; else return false; return (int) $num; }
|