PDA

View Full Version : PHP: equal or larger than


DiscussAnything
08-03-2004, 05:42 PM
I'm using the Karma hack, but am using several levels of karma. Once someone hits the level, the progress bar 'resets' to the next level. However, since i'm not completely familiar with the PHP code, I am having a problem:

if ($post[totalpoint] == '0' && $possible_total1 == '0')
{
$post[td] = "<td width=100% bgcolor=''></td>";
}
elseif ($redeem_points == '0' && $post[totalpoint] != '0')
{
$post[td] = "<td width=100% bgcolor='#D4D5A3'></td>";
}
elseif ($post[totalpoint] != '0' && $possible_total1 != '0' && $post[totalpoint] <= $possible_total1)
{
$post[td] = "<td width='$coverage1' bgcolor='#BDBDB5' title=" . $post[totalpoint] . "/" . $possible_total1 . "></td>";
}
elseif ($post[totalpoint] != '0' && $possible_total1 != '0' && $post[totalpoint] > $possible_total1 && $post[totalpoint] <= $possible_total2)
{
$post[td] = "<td width='$coverage2' bgcolor='#C5C5A7' title=" . $post[totalpoint] . "/" . $possible_total2 . "></td>";
}
elseif ($post[totalpoint] != '0' && $possible_total1 != '0' && $post[totalpoint] > $possible_total2 && $post[totalpoint] <= $possible_total3)
{
$post[td] = "<td width='$coverage3' bgcolor='#D0CF9C' title=" . $post[totalpoint] . "/" . $possible_total3 . "></td>";
}
elseif ($post[totalpoint] != '0' && $possible_total1 != '0' && $post[totalpoint] > $possible_total3 && $post[totalpoint] <= $possible_total4)
{
$post[td] = "<td width='$coverage4' bgcolor='#DDDC95' title=" . $post[totalpoint] . "/" . $possible_total4 . "></td>";
}
elseif ($post[totalpoint] != '0' && $possible_total1 != '0' && $post[totalpoint] > $possible_total4 && $post[totalpoint] <= $possible_total5)
{
$post[td] = "<td width='$coverage5' bgcolor='#F4F3B6' title=" . $post[totalpoint] . "/" . $possible_total5 . "></td>";
}
elseif ($post[totalpoint] != '0' && $possible_total1 != '0' && $post[totalpoint] > $possible_total5 && $post[totalpoint] <= $possible_total6)
{
$post[td] = "<td width='$coverage6' bgcolor='#FFFFFF' title=" . $post[totalpoint] . "/" . $possible_total6 . "></td>";
}

The problem is that when someone hits the $possible_totalx, it only understands the parts that is < and not the = sign. So if the first limit is 200 posts, and someone reaches 200, it doesnt perform the code and screws up their post (since html is missing). Not a big issue since their next post fixes it, but still, i'd like to fix it.

So my question is, in the above code, how do i make it this part work properly:

&& $post[totalpoint] <= $possible_total2

Colin F
08-04-2004, 05:03 AM
that should actually work... see here: http://ch.php.net/manual/en/language.operators.comparison.php

what you might want to do is put ()'s around each statement, but I'm not sure if that makes a difference.

benroles
08-04-2004, 06:58 AM
that should actually work... see here: http://ch.php.net/manual/en/language.operators.comparison.php

what you might want to do is put ()'s around each statement, but I'm not sure if that makes a difference.
It should work... hmm... I guess if you wanted you could just try this:

($post[totalpoint] < ($possible_total2+1))

That is saying the same thing but using a different comparison operator.

B.

DiscussAnything
08-04-2004, 01:05 PM
Thanks guys. I am trying the () thing now, and if that doesn't work, I'll try ben's suggestion