예제 #1
0
파일: index.php 프로젝트: hacklu/Algorithm
    }
} else {
    $current_week = $week;
}
if (isset($_GET['level'])) {
    $level = $_GET['level'];
    $group = $level;
    $problems = get_ProblemsOnWeek($current_week, $level);
} else {
    $group = $team;
    $problems = get_ProblemsOnWeek($current_week, $team);
}
if ($problems != null) {
    for ($i = 0; $i < count($problems); $i++) {
        $score = get_ScoresByProb($problems[$i]['id']);
        $commentCount = get_CommentsCountByProb($problems[$i]['id']);
        $problems[$i]['score'] = $score;
        $problems[$i]['commentCount'] = $commentCount['count(*)'];
    }
    $smarty->assign('problems', $problems);
} else {
    $smarty->assign('problems', '');
}
$smarty->assign('name', $_SESSION['name']);
$smarty->assign('week', $week);
$smarty->assign('current_week', $current_week);
$smarty->assign('group', $group);
$smarty->assign('userid', $_SESSION['userid']);
$smarty->assign('photoPath', $_SESSION['photoPath']);
$smarty->display('index.tpl');