-
Notifications
You must be signed in to change notification settings - Fork 1
/
website-committee.php
123 lines (101 loc) · 2.79 KB
/
website-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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
include 'config.php';
$profiles = $conn->query(" SELECT * FROM Committees a, profiles b WHERE a.MemNo = b.MemNo AND CommitteeCode='WW' 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 style="margin-left:25%">
<div style="margin-right:5%">
<main>
<h1>Website Committee</h1>
<h3>Website Committee.</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 } ?>
<?php
include 'config.php';
$profiles = $conn->query(" SELECT * FROM Committees a, profiles b WHERE a.MemNo = b.MemNo AND CommitteeCode='WD' ORDER BY SortOrder ");
?>
<h3>Website Database Committee.</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 } ?>
<?php
include 'config.php';
$profiles = $conn->query(" SELECT * FROM Committees a, profiles b WHERE a.MemNo = b.MemNo AND CommitteeCode='WC' ORDER BY SortOrder ");
?>
<h3>Website Content Committee.</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 } ?>
</main>
</body>
</html>