This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
index.php
72 lines (62 loc) · 1.72 KB
/
index.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
<?php
require_once 'header.php';
$page_title = '首頁';
// die(var_dump($_SESSION));
$op = isset($_REQUEST['op']) ? filter_var($_REQUEST['op']) : '';
$sn = isset($_REQUEST['sn']) ? (int) $_REQUEST['sn'] : 0;
/*************控制器**************/
switch ($op) {
case 'submission':
$op = 'submission';
break;
default:
if ($sn) {
show_article($sn);
$op = 'show_article';
} else {
list_article();
list_focus();
$op = 'list_article';
}
break;
}
require_once 'footer.php';
/*************函數區**************/
//讀出所有文章
function list_article()
{
global $db, $smarty;
$sql = "SELECT * FROM `article` ORDER BY `update_time` DESC";
include_once "PageBar.php";
$PageBar = getPageBar($db, $sql, 5, 10);
$bar = $PageBar['bar'];
$sql = $PageBar['sql'];
$total = $PageBar['total'];
$result = $db->query($sql) or die($db->error);
$all = array();
$i = 0;
while ($data = $result->fetch_assoc()) {
$all[$i] = $data;
$all[$i]['summary'] = mb_substr(strip_tags($data['content']), 0, 90);
$i++;
}
// die(var_export($all));
$smarty->assign('all', $all);
$smarty->assign('bar', $bar);
}
//讀出所有精選
function list_focus()
{
global $db, $smarty;
$sql = "SELECT * FROM `article` WHERE `focus`='1' ORDER BY `update_time` DESC";
$result = $db->query($sql) or die($db->error);
$all = array();
$i = 0;
while ($data = $result->fetch_assoc()) {
$all[$i] = $data;
$all[$i]['summary'] = mb_substr(strip_tags($data['content']), 0, 90);
$i++;
}
// die(var_export($all));
$smarty->assign('allslide', $all);
}