Jump to content

Need help with this


tartou2

Recommended Posts

hello again

 

so i have now this simple code

if((($credits/1000000)>=1) && (($credits/1000000)<1000))
{
$credits1=$credits/1000000;
$credits1="$credits1 <font color=\"orange\"><i>mil</i></font>";
}
elseif(($credits/1000000000)>=1 && (($credits/1000000000)<1000))
{
$credits1=$credits/1000000000;
$credits1="$credits1 <font color=\"yellow\"><i>bil</i></font>";
}
elseif(($credits/1000000000000)>=1)
{
$credits1=$credits/1000000000000;
$credits1="$credits1 <font color=\"red\"><i>tril</i></font>";
}
else
{
$credits1=$credits;
}

 

so if i have 5,000,000,000 the code echo 5 bil

but if i have 4,999,999,999 the code show 4.999999999 mil

 

how to fix this code so it show only 2 decimal letters, i mean 4.99 mil and at the same time if there is no decimal such as the first example it will only show 5 bil

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.