Ejemplo n.º 1
0
<?php

$root = realpath($_SERVER["DOCUMENT_ROOT"]);
include_once $root . '/scripts/DBAccess.php';
$page = $_GET['page'];
$title = 'Gallery';
$head = '';
$cutdown = false;
$content = "\n\n\n<h1 class=\"heading\">SEQAS Gallery</h1>";
//Display Contributors
$content .= "<div class=\"container2\">";
$conResult = DBAccess::getContributors();
$rows = count($conResult, 0);
for ($i = 0; $i < $rows; $i++) {
    if ($conResult[$i]['UserID'] != NULL) {
        $content .= "<a style=\"color:#06C;clear:none;float:left;width:24%;display:block;\" class=\"link\" href=\"/gallery/member/" . $conResult[$i]['UserID'] . "/\">" . $conResult[$i]['FirstName'] . " " . $conResult[$i]['LastName'] . " (" . $conResult[$i]['count'] . ")</a>";
    }
}
$content .= "</div>";
//Display Content
if ($page == "category") {
    $classID = $_GET['type'];
    if (is_numeric($classID)) {
        $classResult = DBAccess::getClassByClassID($classID);
        $head = "<meta name=\"description\" content=\"A list of of all the " . $classResult[0]['ClassName'] . " taken by our members. \">";
        $pictureClassResult = DBAccess::getPictureByClassID($classID, TRUE);
        $rowsClass = count($pictureClassResult, 0);
        if ($rowsClass > 0) {
            $content = $content . "<h2 class=\"heading\" style=\"clear:left;\">" . $classResult[0]['ClassName'] . "</h2>";
            //$content = $content . "<h2 class=\"heading\" style=\"clear:left;\">CATEGORY NAME GOES HERE</h2>";
            for ($j = 0; $j < $rowsClass; $j++) {