-
Notifications
You must be signed in to change notification settings - Fork 2
/
club_info.php
74 lines (74 loc) · 2.85 KB
/
club_info.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
<?php
include_once("./header.php");
?>
<br>
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-10">
<table class="table table-hover table-bordered table-condensed">
<thead>
<tr class="warning">
<td>編號</td>
<td>社團名稱</td>
<td>線上預覽</td>
<td>Download</td>
<td>社團 FB</td>
<td>社團網頁</td>
</tr>
</thead>
<tbody>
<?php
if($_GET["id"]<=0||$_GET["id"]>$club_count){
$id=0;
}
else{
$id=$_GET["id"];
}
echo "<tr class=\"success\">";
echo "<td>#" . $_GET["id"] . "</td>";
echo "<td>" . $club[$id]["name"] . "</td>";
if ($club[$id]["pdf"]!="0"){
echo "<td><a href=./pdf_view.php?id=" . $club[$id]["name"] . ">";
echo "<span class=\"glyphicon glyphicon-search\" aria-hidden=\"true\">\t預覽</span>";
echo "</a></td>";
echo "<td><a href=./asset/info/" . $club[$id]["name"] . ".pdf>";
echo "<span class=\"glyphicon glyphicon-download-alt\" aria-hidden=\"true\">\t下載</span>";
echo "</a></td>";
}
else{
echo "<td></td><td></td>";
}
if ($club[$id]["fb"]!=""){
echo "<td><a href=" . $club[$id]["fb"] . ">";
echo "<span class=\"glyphicon glyphicon-education\" aria-hidden=\"true\">\t社團FB</a></td>";
}
else{
echo "<td></td>";
}
if ($club[$id]["web"]!=""){
echo "<td><a href=" . $club[$id]["web"] . ">";
echo "<span class=\"glyphicon glyphicon-home\" aria-hidden=\"true\">\t社團網頁</span></a></td>";
}
else{
echo "<td></td>";
}
echo "</tr>";
?>
</tbody>
</table>
<?php
if($club[$id]["photo"]!="0"){
echo "<img src=./asset/info/" . $club[$id]["name"] . ".jpg style=\"width: 100%\">";
}
?>
<br>
<h4 style="text-align:center">(註:該欄空白代表該社團並未提供該項資料)</h4>
<h6 style="text-align:center">以上資料由各社團提供,並不代表學聯會立場</h6>
</div>
<div class="col-md-1">
</div>
</div>
<?php
include_once("footer.php");
?>