Jump to content

[SOLVED] determining positive and negative


shadiadiph

Recommended Posts

I am using the following but it isn't working

 

$newusdbalance etc are saved as decimal numbers in the database so they are displaying 0.00 17.51 -203.23 etc balanceplus balanceneg are css styles i have tried numerous things keeps displaying only one colour the css values are fine

 

if ($newusdbalance > 0 )
{
$balance1="balanceplus";
}
if ($newusdbalance < 0 )
{

mm thought I had it solved but i don't

I am now using

 

if ($newusdbalance > 0)
{$balance="balanceplus";}
else
{$balance="balanceneg";}

 

balanceplus is css and so is balanceneg blue and red problem is if the number =0.00 it stays red if -1.00 it red which is correct and more then 1.00 it turns blue why is it still staying red on 0.00 even if i make it > 0.99 the number 0.00 stays red??

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.