GIDForums  

Go Back   GIDForums > Computer Programming Forums > MySQL / PHP Forum
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rate Thread
  #1  
Old 19-Nov-2006, 00:11
ctrohaya ctrohaya is offline
New Member
 
Join Date: Nov 2006
Posts: 29
ctrohaya is on a distinguished road

decrease decimal in php


i have a simple calculation script using PHP, and it produce very long floating point. ex;

$Eng_rate6=($rate6/$english)*100;
then, var $Eng_rate6 will be 33.3333336.
how can i decrease it point so that it will be 33.33?
  #2  
Old 20-Nov-2006, 10:23
nexuslite nexuslite is offline
New Member
 
Join Date: Nov 2006
Posts: 3
nexuslite is on a distinguished road

Re: decrease decimal in php


<?php
$val = 33.3333336;
$val = (float) sprintf("%1.2f", $val);
echo $val;
?>
  #3  
Old 21-Nov-2006, 23:05
ctrohaya ctrohaya is offline
New Member
 
Join Date: Nov 2006
Posts: 29
ctrohaya is on a distinguished road

Re: decrease decimal in php


yeah! it work! tq so much friend........
 
 

Recent GIDBlogToyota - 2009 May Promotion by Nihal

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Roman to decimal to roman SpudNuts C++ Forum 2 16-Feb-2005 20:44
Help ! I need help starting up on Php ! onauc MySQL / PHP Forum 11 05-Jan-2005 00:57
Hex Result giving strange answers. Rosdahale C Programming Language 6 07-Dec-2004 21:28
uisng php to display php dopee MySQL / PHP Forum 6 14-May-2004 19:40
All the big PHP script collections that matter jrobbio MySQL / PHP Forum 5 06-Jun-2003 17:14

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 08:36.


vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.