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

📄 tpl_error.php

📁 一款文件上传程序
💻 PHP
字号:
<!-- tpl_error.php -->
<?php
if ( !isset ( $error ) || !is_array ( $error ) ) { $error = array ( $error ); }
?>
<div style="background-color:#FFFFD6;padding: 3px 4px 3px 8px; margin:5px 0px 5px 0px;-moz-border-radius:5px;">
    <img src="templates/default2/images/exclamation.gif" alt="Error!" class="img1" />
    <strong style="font-size:1.1em;color:#B32400;">The following errors were found</strong>
    <ul style="padding: 3px 0px 3px 3px;color:#B32400;">
        <?php reset ( $error ); while ( list ( $i, $err ) = each ( $error ) ) : ?><li style="margin-top:3px;"><?=$err?></li><?php endwhile; ?>
    </ul>
</div>

⌨️ 快捷键说明

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