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:
PHP Code:
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:
PHP Code:
&& $post[totalpoint] <= $possible_total2