The int() function is for C/C++ programming only.  This Int() function is
not supported in PHP.  In PHP it would be Intval().  For float, Floatval().
For double, DoubleVal().  Etc.   But beware of the Octual numbers.

"Skate" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> >    $Days = (($clockDate - $inputDate) / (24 * 3600));
>
> $Days = int(($clockDate - $inputDate) / (24 * 3600));
>
> you tried that?
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to