-
Notifications
You must be signed in to change notification settings - Fork 1
/
shownote.php
195 lines (166 loc) · 6 KB
/
shownote.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>查看笔记</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/nav.css"/>
<link rel="stylesheet" type="text/css" href="css/shownote.css"/>
<link href="img/logo.ico" rel="shortcut icon" />
</head>
<body>
<?php require 'common.php';?>
<!--导航条-->
<?php require 'nav.php' ?>
<!--头像和介绍-->
<!--非导航部分-->
<div id="container">
<div id="intro">
<div id="touxiang">
</div>
<?php
connect_mydb();
select_mydb();
$username=$_COOKIE['username'];
$sql="select userimg from userinformation where username = '$username'";
$result=fetch_array($sql);
$result=$result['userimg'];
echo '<script>document.getElementById("touxiang").style.backgroundImage="'.$result.'";
</script>';
mysqli_close($mydb);
?>
<div id="name">
<p class="name">
<?php echo $_COOKIE['username']; ?>
</p>
</div>
<div id="motto">
<p class="motto">
<?php
connect_mydb();
select_mydb();
global $username;
$username=$_COOKIE['username'];
$row=mysqli_query($mydb,"select motto from userinformation where username ='$username'");
$row=mysqli_fetch_array($row,MYSQLI_ASSOC);
$motto=$row['motto'];
echo $motto;
mysqli_close($mydb);
?>
</p>
</div>
</div>
<!--非标头部分-->
<div id="non-intro">
<!--工具栏部分-->
<div id="toolbox">
<div id="toolbar">
<ul>
<a href="userHomepage.php">
<li><span class="glyphicon glyphicon-user"></span> 我的主页  <span class="glyphicon glyphicon-chevron-right"></span></li>
</a>
<a href="updatedata.php">
<li><span class="glyphicon glyphicon-align-left"></span> 我的资料  <span class="glyphicon glyphicon-chevron-right"></span></li>
</a>
<a href="schedule.php">
<li><span class="glyphicon glyphicon-calendar"></span> 我的日程  <span class="glyphicon glyphicon-chevron-right"></span></li>
</a>
<a href="memorandum.php">
<li><span class="glyphicon glyphicon-list-alt"></span> 我的备忘  <span class="glyphicon glyphicon-chevron-right"></span></li>
</a>
<a href="shownote.php">
<li><span class="glyphicon glyphicon glyphicon-book"></span> 我的笔记  <span class="glyphicon glyphicon-chevron-right"></span></li>
</a>
</ul>
</div>
</div>
<!--非工具栏-->
<div id="content">
<!--添加笔记按钮-->
<a href="editnote.php"><button class="btn btn-info" id="addbtn"><span class="glyphicon glyphicon-plus-sign" ></span> 添加笔记</button></a>
<!--笔记展示-->
<!--日程块-->
<?php
connect_mydb();
select_mydb();
$username=$_COOKIE['username'];
$sql="select * from note where username='$username' order by settime DESC";
$result=query($sql);
$rownumber=mysqli_num_rows($result);
if($rownumber==0){
echo '<div id="none">
<p>你现在还没有笔记哦 (*゚▽゚*) 快去添加吧</p>
</div>';
}
else{
$result=fetch_all($sql);
for($i=0;$i<$rownumber;$i++)
{
echo '<div class="notebox">';
echo '<h3>';
echo $result[$i]["title"];
echo '</h3></a></form>
<div class="content">';
$result[$i]['content']=preg_replace("/<img.*?>/si","[图片]",$result[$i]['content']);
/*$result[$i]['content']=preg_replace("/<([a-zA-Z]+)[^>]*>/","",$result[$i]['content']);*/
$result[$i]['content']=preg_replace("/<[^>]*>/sim","",$result[$i]['content']);
echo stripslashes(substr($result[$i]['content'],0,350));
echo '</div>
<p class="time">';
echo $result[$i]['settime'];
echo '</p><form action="notedetail.php" method="post">
<button class="btn btn-info editbtn" name="id" value="';
echo $result[$i]['id'];
echo '"><span class="glyphicon glyphicon-search"></span> 查看</button></form>
<form action="motifynote.php" method="post"><button class="btn btn-info editbtn" name="id" value="';
echo $result[$i]['id'];
echo '"><span class="glyphicon glyphicon-pencil"></span> 修改</button></form>
<form action="actionnote?action=delete" method="post"><button class="btn btn-info deletebtn" name="id" value="';
echo $result[$i]['id'];
echo '"><span class="glyphicon glyphicon-trash"></span> 删除</button></form>
</div>';
}
}
mysqli_close($mydb);
?>
</div>
</div>
</div>
<!--返回顶部按钮-->
<a href="#top">
<div class="btn btn-info " id="backtotop">
<span class="up glyphicon glyphicon-chevron-up"></span>
</div>
</a>
<script type="text/javascript">
window.onload = function() {
if(document.body.clientWidth < 1150) {
document.getElementById("backtotop").style.display = "none";
} else {
window.onscroll = function() {
var t = document.documentElement.scrollTop || document.body.scrollTop;
if(t > 400) {
document.getElementById("backtotop").style.display = "block";
} else {
document.getElementById("backtotop").style.display = "none";
}
}
}
}
window.onresize = function() {
if(document.body.clientWidth < 1150) {
document.getElementById("backtotop").style.display = "none";
}
}
</script>
<script type="text/javascript">
function sub(){
document.getElementById("detail").submit();
}
</script>
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>