MyBB Community Forums

Full Version: Adding a reputation class accordingly as per rep numbers at a certain page in PHP script
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello there,

So I wanted to put a reputation number of respective user on some other page, but the problem is the color of number of reputation of the respective user is the color of link, that is, if its positive it should show green, if negative, then red, and like wise. See the image below to get a clear understanding:

[Image: jYTyI.png]

Can anyone tell what code I should enter in the PHP file? I tried a lot but didn't got necessary result.

Thanks a lot.
Anyways, found a way. Wink
Something like this? (obviously replace the variable names)
if($rep < 0)
{
    $bgcolor = "red";
}
elseif($rep == 0)
{
    $bgcolor = "white";
}
else
{
    $bgcolor = "green";
}