예제 #1
0
<?php

include 'database/polls_fetch.php';
include 'templates/header.php';
include 'user.php';
include_once 'templates/showPolls.php';
$all_groups = getAnsweredGroups(getUserIDbyUsername($_SESSION['username']));
include 'search_poll.php';
foreach ($all_groups as $item1) {
    showPollGroupStat($item1);
}
include 'templates/footer.php';
예제 #2
0
<?php

include 'templates/header.php';
include 'user.php';
include 'database/polls_fetch.php';
include "utilities/pollgoogle.php";
include_once 'templates/showPolls.php';
$all_groups = getGroupsByUserId(getUserIDbyUsername($_SESSION['username']));
include 'search_poll.php';
foreach ($all_groups as $group) {
    showPollGroupStat($group);
}
include 'templates/footer.php';