Posted by Chris H on 04/05/06 22:29
What does (int) do? I recognize it as something to do with "integer". but im
not sure what exactly the purpose is of the (int) is
<?
$total_points = (int) $prize_pool * 0.7;
// if needed
$total_points = round($total_points);
?>
"Michael Pichler" <mail@michaelpichler.de> wrote in message
news:e102a4$pci$01$1@news.t-online.com...
> Chris H schrieb:
> [...]
>> in other words what is the correct format for this type of equation.
>>
>> $prize_pool = "5000";
>> $total_points = 70% of $prize_pool
>>
>
> I'm not sure if I understood your problem.
>
> <?
> $total_points = (int) $prize_pool * 0.7;
> // if needed
> $total_points = round($total_points);
> ?>
>
> Can it be that simple?
>
> Michael
>
>
Navigation:
[Reply to this message]
|