-
Notifications
You must be signed in to change notification settings - Fork 1
/
schedule.php
237 lines (206 loc) · 7.64 KB
/
schedule.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!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>
<script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/nav.css" />
<link href="img/logo.ico" rel="shortcut icon" />
<link rel="stylesheet" type="text/css" href="css/schedule.css" />
<script src="js/bootstrap-datetimepicker.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap-datetimepicker.min.css" />
<script src="js/locales/bootstrap-datetimepicker.zh-CN.js" type="text/javascript" charset="utf-8"></script>
</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">
<!--添加日程-->
<div id="add">
<button class="btn btn-info" id="addbtn" data-toggle="modal" data-target="#addform"><span class="glyphicon glyphicon-plus-sign" ></span> 添加日程</button>
<!--添加日程模态框-->
<div class="modal fade" id="addform">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title">添加日程</h4>
</div>
<div class="modal-body">
<!--日程表单-->
<div >
<form action="actionschedule.php?action=insert" method="post" id="form">
<br />
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-time"></span></span>
<input type="text" id="timeform" placeholder="活动开始时间" name="starttime" class="form-control">
</div>
<br />
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-flag"></span></span>
<input type="text" class="form-control" placeholder="活动名称" name="theme" id="theme">
</div>
<br />
<input type="button" class="btn btn-info" id="comfirmadd" onclick="check()" value="确认添加"></input>
</form>
</div>
<script type="text/javascript">
function check(){
if(document.getElementById("timeform").value==''){
alert("时间不能为空哦!");
return false;
}
if(document.getElementById("theme").value==''){
alert("活动名称不能为空哦!");
return false;
}
if(document.getElementById("timeform").value!=''&&document.getElementById("theme").value!=''){
form.submit();
}
}
</script>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">取消添加</button>
</div>
</div>
</div>
</div>
</div>
<!--日程块-->
<?php
connect_mydb();
select_mydb();
$username=$_COOKIE['username'];
$sql="select * from schedule where username='$username' order by starttime 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++)
{
$nowtime=strtotime(date('y-m-d h:i',time()));
$thistime=strtotime($result[$i]['starttime']);
if($nowtime<$thistime){
echo'<div class="schedulebox">
<h3 class="scheduletitle">';
echo $result[$i]['theme'];
echo ' <span class="label label-default">未进行</span></h3>
<p class="time">';
echo $result[$i]['starttime'];
echo '</p>';
echo '<form action="actionschedule.php?action=delete" method="post">';
echo '<button class="btn btn-info deletebtn" name="id" value="';
echo $result[$i]['id'];
echo '">删除</button>';
echo '<form>';
echo '</div>';
}
else{
echo'<div class="schedulebox">
<h3 class="scheduletitle">';
echo $result[$i]['theme'];
echo ' <span class="label label-info">已完成</span></h3>
<p class="time">';
echo $result[$i]['starttime'];
echo '</p>';
echo '<form action="actionschedule.php?action=delete" method="post">';
echo '<button class="btn btn-info deletebtn" name="id" value="';
echo $result[$i]['id'];
echo '">删除</button>';
echo '<form>';
echo '</div>';
}
}
}
mysqli_close($mydb);
?>
</div>
</div>
</div>
<script type="text/javascript">
$('#timeform').datetimepicker({
format: 'yyyy-mm-dd hh:ii',
autoclose: true,
todayBtn: true,
pickerPosition: "bottom-left",
language: 'zh-CN',
});
</script>
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>