Ejemplo n.º 1
0
<html>
    <head>
        <link href="styles/viewLecturersStyle.css" rel="stylesheet" type="text/css">
         <title>View Lecturers <?php 
echo $login_session;
?>
<</title>
    </head>
    <body>
<div class = "box">
    <center><h1>Lecturers</h1></center>
<?php 
echo "<table>\n<tr>\n<th></th>\n<th></th>\n<th></th>\n</tr>";
foreach ($list as $row) {
    $courseList = array();
    $courseList = getTeachingCourses($row["username"]);
    echo "<tr>";
    echo "<td>";
    echo "{$row["name"]}";
    echo '<br>';
    echo '<img src="data:image/jpeg;base64,' . base64_encode(file_get_contents($row["image"])) . '" width="100" height="100" />';
    echo '<br><br><br>';
    echo "</td>";
    echo "<td>";
    echo '<div class ="subBox">';
    echo $row["info"];
    echo '</br><a href="mailto:' . $row["email"] . '?Subject=Contact Lecturer From CSE Grades" target="_top">' . $row["email"] . '</a>';
    echo "</div>";
    echo "</td>";
    echo "<td>";
    echo '<div class ="codeBox">';
Ejemplo n.º 2
0
<?php

include 'barLine.html';
include 'session.php';
include 'controller/dbController.php';
$courseList = getTeachingCourses($login_session);
?>

<html>
<head>
    <link href="styles/analyzeBatchwiseAdminStyle.css" rel="stylesheet" type="text/css">
    </head>
    
<body>
    <div class="tbl">
    <table>
            <tr>
                <th rowspan="2">Course</th>
                <th rowspan="2">Intake Year</th>
                <th colspan="3">Stats from Batch</th>
                <th rowspan="2">No. of Students</th>
            </tr>
            <tr>
                <th>Max</th>
                <th>Average</th>
                <th>Min</th>
            </tr>
            <?php 
foreach ($courseList as $course) {
    $batchwiseStats = getBatchwiseStats($course['code']);
    $courseTitle = "a";