forked from Microsheep/2015-NCTU_newcomer_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQA_list.php
31 lines (31 loc) · 1.11 KB
/
QA_list.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
<?php
include_once("./header.php");
?>
<br>
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-10">
<h1 style="text-align:center"><b>新生提問系統 精選問答集</b></h1><br>
<div class="list-group">
<?php
for ($i = 1; $i <= $QA_count; $i++) {
if($i%2==1){
echo "<h4><a href=\"./QA.php?id=$i\" class=\"list-group-item list-group-item-warning\">" . $QA[$i]["head"] . "</a></h4>";
}
else{
echo "<h4><a href=\"./QA.php?id=$i\" class=\"list-group-item list-group-item-info\">" . $QA[$i]["head"] . "</a></h4>";
}
}
?>
</div>
<br>
<h4 style="text-align:center">還有問題想問嗎? 快使用交大新生提問系統! <a href="https://stunion.nctu.edu.tw/question/" class="btn btn-danger">新生提問系統 <i class="fa fa-share-square-o"></i></a></h4>
<br>
</div>
<div class="col-md-1">
</div>
</div>
<?php
include_once("footer.php");
?>