show_msg.tpl.php

来自「一个文章管理系统,很不错的,php语言开发,运行平台:windows和linux」· PHP 代码 · 共 47 行

PHP
47
字号
<?php
if( !defined('ISELOOK') ){
	header('HTTP/1.0 404 Not Found');
	exit;
}
?><!--<?php
print <<<EOT
--><table id=ElookSpace><tr><td></td></tr></table>
<table cellpadding="3" cellspacing="1" border="0" class="border" align=center>
<tr class="title">
	<td>■ {$title} - {$suc_tyle}</td>
</tr>
<tr class="tdbg">
	<td height="80" style="padding:10px;">
<!--
EOT;
$showmsg = explode('|||',$showmsg);
for ($i=0; $i<count($showmsg); $i++){
	$ii = $i + 1;
	if ($showmsg[$i] != ''){
print <<<EOT
-->
{$ii}、{$showmsg[$i]}<BR>
<!--
EOT;
	}
}
print <<<EOT
-->
{$link}</td>
</tr>
<!--
EOT;
if($url!=''){print <<<EOT
-->
<tr align="center" class="tdbg">
	<td class="tdbg1"><input type="button" name="submit" value="{$button}"  onclick="location.href='{$url}'" style="margin-top:2px;"></td>
</tr>
<!--
EOT;
}
print <<<EOT
-->
</table>
<!--
EOT;
?>-->

⌨️ 快捷键说明

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