-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.php
43 lines (41 loc) · 1.45 KB
/
upload.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
<?php
require_once dirname(__FILE__) . '/help/system.php';
header("Content-Type: text/html; charset=utf-8");
CheckLogin();
?>
<html>
<head>
<title>YMmd Blog - 更新博客</title>
<link rel='stylesheet' type='text/css' href='upload.css'>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
<style type='text/css' media='screen'>
body {
background-color: #666666;
background-image:url(./upload_index_img/bg.jpg);
margin-top: 400px;
}
</style>
<style type='text/css'>
a{display:inline-block; width:450px; height:80px; background-image:url(./upload_index_img/update_img_1.png); position:relative;}
a:hover{background-image:url(./upload_index_img/update_img_0.png);}
input{position:absolute; right:0; top:0; font-size:100px; opacity:0; }
</style>
<title></title>
</head>
<body>
<center>
<div>
<form action='uploadA.php' method='post' enctype='multipart/form-data'>
<ol>
<li>
<a><input type='file' value='file'></a>
</li>
<li>
<a><input type='submit' value='Submit'> <img src='./upload_index_img/file_up_1.png'></a>
</li>
</ol>
</form>
</div>
</center>
</body>
</html>