--- [EMAIL PROTECTED] wrote:
> if you want to do
> 10 / 3
> i want it to show 3 and not 3.33333
>
> how do I control that?
>
$a= 10/3;
echo (int)$a;
echo $a;
----Result
3
3.33333
regards
=====
====================
Ing. Alejandro Garín
Telecom Internet
__________________________________________________
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail.
http://personal.mail.yahoo.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]