vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   PHP: equal or larger than (https://vborg.vbsupport.ru/showthread.php?t=67966)

DiscussAnything 08-03-2004 05:42 PM

PHP: equal or larger than
 
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 


Colin F 08-04-2004 05:03 AM

that should actually work... see here: http://ch.php.net/manual/en/language...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

Quote:

Originally Posted by Colin F
that should actually work... see here: http://ch.php.net/manual/en/language...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


All times are GMT. The time now is 12:32 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01015 seconds
  • Memory Usage 1,749KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete