mirror of https://github.com/helloxz/imgurl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.0 KiB
92 lines
2.0 KiB
7 years ago
|
<?php
|
||
|
error_reporting(E_ALL^E_NOTICE^E_WARNING^E_DEPRECATED);
|
||
|
//载入配置
|
||
|
include_once('./config.php');
|
||
|
//载入header
|
||
|
include_once('tpl/header.php');
|
||
|
require_once( 'sdk/Medoo.php' );
|
||
|
|
||
|
use Medoo\Medoo;
|
||
|
$database = new medoo([
|
||
|
'database_type' => 'sqlite',
|
||
|
'database_file' => 'data/imgurl.db3'
|
||
|
]);
|
||
|
|
||
|
$datas = $database->select("uploads",[
|
||
|
"id",
|
||
|
"dir"
|
||
|
],[
|
||
|
"ORDER" => "random()",
|
||
|
"LIMIT" => 10
|
||
|
]);
|
||
|
//print_r($datas);
|
||
|
|
||
|
?>
|
||
|
<div class="container" style = "margin-top:40px;">
|
||
|
<div class="row">
|
||
|
<div class="col-lg-10 col-md-offset-1">
|
||
|
<!--图片预览-->
|
||
|
<div class="col-lg-6">
|
||
|
<img id = "viewid" src="./static/view.jpg" class="img-thumbnail img-responsive">
|
||
|
</div>
|
||
|
<!--图片预览END-->
|
||
|
<div class="col-lg-6">
|
||
|
<table class="table table-striped">
|
||
|
<tbody>
|
||
|
<?php
|
||
|
for($i = 0;$i < 10;$i++) {
|
||
|
//如果文件是空的,则终止循环
|
||
|
$imgdir = $datas[$i]['dir'];
|
||
|
?>
|
||
|
<tr id = "row<?php echo $i; ?>">
|
||
|
<td onmouseover = "return view('<?php echo $config['domain'].$imgdir ?>');">
|
||
|
<?php
|
||
|
echo "<a href = "."'".$config['domain'].$imgdir."' target = '_blank'>"."$imgdir</a>";
|
||
|
?>
|
||
|
</td>
|
||
|
<td>
|
||
|
<?php
|
||
|
if(isset($_COOKIE['uid'])) {
|
||
|
echo "<a href = \"javascript:;\" onclick = \"del('$fname[$i]',$i);\">删除</a>";
|
||
|
}
|
||
|
?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<?php } ?>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script>
|
||
|
function view(imgurl) {
|
||
|
$("#viewid").src;
|
||
|
$("#viewid").attr('src',imgurl);
|
||
|
}
|
||
|
//删除图片
|
||
|
function del(filedir,rowid) {
|
||
|
//行id
|
||
|
var rowid = 'row' + rowid;
|
||
|
//确认删除?
|
||
|
var msg = "确认删除?";
|
||
|
if (confirm(msg)==true){
|
||
|
$.get("./functions.php?type=delete&dir="+filedir,function(data,status){
|
||
|
//删除成功
|
||
|
if(data == 'ok') {
|
||
|
$("#"+rowid).remove();
|
||
|
}
|
||
|
else{
|
||
|
alert(data); //删除失败,弹出报错
|
||
|
}
|
||
|
});
|
||
|
}else{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<?php
|
||
|
//载入页脚
|
||
|
include_once('tpl/footer.php');
|
||
|
?>
|