⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 picture.php

📁 Download you own three BR
💻 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 + -