コード例 #1
0
        $category_counter = 1;
        ?>
            <h3><?php 
        echo $nickname;
        ?>
's Picks:</h3>
<?php 
        foreach ($pool_category_fetch as $category_id => $category_info) {
            //generate list of categories for pool and populate the given user's picks for each category
            $incorrect_by_default = 0;
            //reset incorrect_by_default variable if it was previously equal to 1
            if (isset($user_picks_fetch[$category_id])) {
                //if a pick already exists for given category, we store it in the pick_display_value variable
                $user_pick_explode_array = explode('|', $user_picks_fetch[$category_id]);
                $pick_display_value = $user_pick_explode_array[0];
                $answer_correct = $pool->GetUserPickCorrectStatus($category_id, $user_id, $pool_id);
            } else {
                //if no pick exists for the given category:
                $pick_display_value = "**No Pick made**";
                $incorrect_by_default = 1;
                //set incorrect_by_default variable to 1 - this signifies that we are marking the user's lack of answer as "incorrect"
                $answer_correct = 0;
                $category_div_background_color = "#d9534f";
                //set div background color to be red by default if no pick was made
                //$pool->ScorePickManually($category_id, $user_id, $pool_id, 0);
            }
            //BEGIN CODE FOR CORRECT VS. INCORRECT DISPLAYS ON PAGE
            if (isset($answer_correct)) {
                //if the pick has already been scored by the leader:
                if ($answer_correct == 0) {
                    //if pick has been marked as wrong: