📄 picture.php
字号:
<?php
session_start();
error_reporting (E_ERROR | E_WARNING | E_PARSE);
$dirName = "pictures/";
$hDir = opendir($dirName);
include "../functions/class_mysql.php";
include "include/functions.php";
$db->select_db("baysoftchat");
timer();
$db = new db_query;
$db->connect();
?>
<html>
<head>
<title>选择图片</title>
<META http-equiv="Content-Type" content="text/html;charset=gb2312">
<Script language=javascript>
function selPic(name)
{
var str="";
str += "[img]"+name+"[/img]";
dialogArguments.value += str;
return false;
}
</script>
</head>
<body bgcolor="<?=getConfig("page_bgcolor")?>">
<?
while($fileName = readdir($hDir))
{
if(!is_dir($fileName))
{
echo "<img src='pictures/{$fileName}' onclick='selPic(\"{$fileName}\");this.border=1' style='cursor:hand'> ";
}
}
?>
<Center><button onclick=window.close()>关闭窗口</button>
<br>
<?php
include("include/copyrights.php");
?>
</body>
</html>
<?php
$db->close();
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -