RE: [PHP-DB] Decimal places.

2002-10-30 Thread Josh Johnson
This works too: print (int)(($eall - $sall) / 1000);

-- Josh

-Original Message-
From: Andrew Wilson [mailto:will;netwaynetworks.com.au] 
Sent: Tuesday, October 29, 2002 11:18 PM
To: '[EMAIL PROTECTED]'
Subject: [PHP-DB] Decimal places.

Hay guys, 
I have two variables ( integers ) that are being minused one from the
other
and i am printing the result to the screen but i am getting unwanted
decimals.
 
print ($eall - $sall) / 1000;

My question is what is the easiest way to strip decimals off the above
result. The only way i know around it is if i piped the above statement
into
another varible and set that variable to an integer then printed that. 

I dont really want to do this as i will end up with 50 extra variables.
Thanks in advance for your comments. 

Andrew Wilson 
Technical Support 
Netway Networks 
8920-8877 

 


Netway Networks Pty Ltd 
(T) 8920 8877 
(F) 8920 8866 




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




[PHP-DB] Decimal places.

2002-10-29 Thread Andrew Wilson
Hay guys, 
I have two variables ( integers ) that are being minused one from the other
and i am printing the result to the screen but i am getting unwanted
decimals.
 
print ($eall - $sall) / 1000;

My question is what is the easiest way to strip decimals off the above
result. The only way i know around it is if i piped the above statement into
another varible and set that variable to an integer then printed that. 

I dont really want to do this as i will end up with 50 extra variables.
Thanks in advance for your comments. 

Andrew Wilson 
Technical Support 
Netway Networks 
8920-8877 

 


Netway Networks Pty Ltd 
(T) 8920 8877 
(F) 8920 8866 





Re: [PHP-DB] Decimal places.

2002-10-29 Thread Peter Beckman
printf(%d,($eall - $sall) / 1000);

On Wed, 30 Oct 2002, Andrew Wilson wrote:

 Hay guys,
 I have two variables ( integers ) that are being minused one from the other
 and i am printing the result to the screen but i am getting unwanted
 decimals.

 print ($eall - $sall) / 1000;

 My question is what is the easiest way to strip decimals off the above
 result. The only way i know around it is if i piped the above statement into
 another varible and set that variable to an integer then printed that.

 I dont really want to do this as i will end up with 50 extra variables.
 Thanks in advance for your comments.

 Andrew Wilson
 Technical Support
 Netway Networks
 8920-8877




 Netway Networks Pty Ltd
 (T) 8920 8877
 (F) 8920 8866




---
Peter BeckmanSystems Engineer, Fairfax Cable Access Corporation
[EMAIL PROTECTED] http://www.purplecow.com/
---


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