-
Notifications
You must be signed in to change notification settings - Fork 1
/
executive-committee.php
50 lines (43 loc) · 1.16 KB
/
executive-committee.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
include 'config.php';
$profiles = $conn->query(" SELECT * FROM Committees a, profiles b WHERE a.MemNo = b.MemNo AND CommitteeCode='EC' ORDER BY SortOrder ");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Profile</title>
<link rel="stylesheet" type="text/css" href="CSS/StylesMain.css">
</head>
<body>
<?php include 'sidebar.php' ?>
<div class = "content">
<h1>Executive Committee</h1>
<h3>The apex body to execute activities of the Association.</h3>
<?php while ($profile = $profiles->fetch_assoc()) { ?>
<div class="person-info">
<img
src="Images/Members/<?php echo $profile['MemNo']; ?>.jpg"
class="person-image"
alt="<?php echo $profile['a.MemNo']; ?>"
>
<div class="person-details">
<div class="person-name">
<?php echo $profile['Name']; ?>
</div>
<div class="person-designation">
<?php echo $profile['Designation']; ?>
<br>
<?php echo $profile['PostedAt']; ?>, <?php
echo $profile['Company']; ?>
</div>
</div>
<div class="person-portfolio">
<?php echo $profile['Position']; ?>
</div>
</div>
<?php } ?>
</div>
</body>
</html>