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

📄 emotions.php

📁 blog程序~~~ ~~~~~
💻 PHP
字号:
<?php
error_reporting(0);
include ("../../../../data/cache_emot.php");

print<<<eot
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>Emots</title>
	<script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script>
	<script language="javascript" type="text/javascript" src="jscripts/functions.js"></script>
	<base target="_self" />
</head>
<body>
<div align="center">
		<table border="0" cellspacing="0" cellpadding="4" width="100%">
eot;

$perline=15;
$selbody='';
if (is_array($myemots)) {
	$i=0;
	while (@list($emotcode, $emott)=@each($myemots)) {
		$emotthumb=$emott['thumb'];
		$emotorigin=$emott['image'];
		$selbody.="<td><a href=\"javascript:insertEmotion('{$emotorigin}','{$emotcode}');\"><img src=\"../../../../images/emot/{$emotthumb}\" border=\"0\" alt=\"{$emotcode}\" /></a></td>";
		$i+=1;
		if ($i%$perline==0) $selbody.="</tr><tr>";
		unset ($emotcode, $emotthumb);
	}
}

print<<<eot
<tr>
$selbody
</tr>
		</table>
	</div>
</body>
</html>
eot;

?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -