📄 picture_checktitle.php
字号:
<?php include admintpl('header');?>
<body>
<table cellpadding="1" cellspacing="1" width="100%">
<tr>
<td height=6> </td>
</tr>
</table>
<?php
if($error_msg){
?>
<table cellpadding="1" cellspacing="1" class="tableborder" width="100%">
<tr>
<th>提示:出错了:(</th>
</tr>
<tr>
<td class="tablerow"><?=$error_msg?></td>
</tr>
<?php
} else {
?>
<table cellpadding="1" cellspacing="1" class="tableborder" width="100%">
<? if($pictures) { ?>
<tr>
<th>提示:找到如下类似标题:</th>
</tr>
<? foreach($pictures AS $picture) { ?>
<tr align=center onmouseout="this.style.backgroundColor='#F1F3F5'" onmouseover="this.style.backgroundColor='#BFDFFF'" bgColor='#F1F3F5'>
<td align=left class="tablerow"><a href="<?=$rootpath?>data/<?=$picture[addtime]?>/picture_<?=$picture[pictureid]?><?=$fileext?>" target="_blank"><?=$picture[title]?></a> <?=$picture[adddate]?></td>
</tr>
<? } ?>
<?php } else {?>
<tr>
<th>提示:未找到类似标题:</th>
</tr>
<tr>
<td class="tablerow">你可以添加此标题!</td>
</tr>
<?php }?>
<?php
}
?>
<tr>
<td align="right" class="tablerow"><a href="javascript:window.close()">[关闭窗口]</a></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -