<?php
error_reporting(7);
class FORMS {
function formheader($arguments=array()) {
global $HTTP_SERVER_VARS;
if ($arguments[enctype]){
$enctype="enctype=\"$arguments[enctype]\"";
} else {
$enctype="";
}
if (!isset($arguments[method])) {
$arguments[method] = "post";
}
if (!isset($arguments[action])) {
$arguments[action] = $HTTP_SERVER_VARS[PHP_SELF];
}
if (!$arguments[colspan]) {
$arguments[colspan] = 2;
}
echo "<table width=\"100%\" align=\"center\" border=\"0\" cellspacing=\"1\" cellpadding=\"4\" class=\"tableoutline\">\n";
echo "<form action=\"$arguments[action]\" $enctype method=\"$arguments[method]\" name=\"$arguments[name]\" $arguments[extra]>\n";
if ($arguments[title]!="") {
echo "<tr id=\"cat\">
<td class=\"tbhead\" colspan=\"$arguments[colspan]\">
<b> $arguments[title] </b>
</td>
</tr>\n";
}
}
function formfooter($arguments=array()){
echo "<tr class=\"tbhead\">\n";
if ($arguments[confirm]==1) {
//$arguments[colspan] = 1;
$arguments[button][submit][type] = "submit";
$arguments[button][submit][name] = "submit";
$arguments[button][submit][value] = "确认";
$arguments[button][submit][accesskey] = "y";
$arguments[button][back][type] = "button";
$arguments[button][back][value] = "取消";
$arguments[button][back][accesskey] = "r";
$arguments[button][back][extra] = " onclick=\"history.back(1)\" ";
} elseif (empty($arguments[button])) {
$arguments[button][submit][type] = "submit";
$arguments[button][submit][name] = "submit";
$arguments[button][submit][value] = "提交";
$arguments[button][submit][accesskey] = "y";
$arguments[button][reset][type] = "reset";
$arguments[button][reset][value] = "重置";
$arguments[button][reset][accesskey] = "r";
}
if ($arguments[nextpage]==1) {
$arguments[button][nextpage][type] = "submit";
$arguments[button][nextpage][name] = "nextpage";
$arguments[button][nextpage][value] = "继续添加下一页";
$arguments[button][nextpage][accesskey] = "n";
}
if (empty($arguments[colspan])) {
$arguments[colspan] = 2;
}
//echo "<pre>";
//print_r($arguments);
//echo "</pre>";
echo "<td colspan=\"$arguments[colspan]\" align=\"center\">\n";
if (isset($arguments) AND is_array($arguments)) {
foreach ($arguments[button] AS $k=>$button) {
if (empty($button[type])) {
$button[type] = "submit";
}
echo " <input accesskey=\"$button[accesskey]\" type=\"$button[type]\" name=\"$button[name]\" value=\" $button[value] \" $button[extra]> \n";
}
}
echo "</td>
</tr>\n";
echo "</form>\n";
echo "</table>\n";
}
function tableheader() {
echo "<table width=\"100%\" align=\"center\" border=\"0\" cellspacing=\"1\" cellpadding=\"4\" class=\"tableoutline\">\n";
}
function tablefooter() {
echo "</table>\n";
}
function tableseparate() {
$this->tablefooter();
echo "<br>\n";
$this->tableheader();
}
function makecategory($arguments = array()) {
if (!is_array($arguments)) {
$title = $arguments;
} else {
$title = $arguments[title];
}
if ($arguments[separate]==1) {
$this->tableseparate();
}
echo "<tr class=\"tbcat\" id=\"cat\">
<td colspan=\"2\">".htmlspecialchars($title)."</td>
</tr>\n";
}
function maketd($arguments = array()) {
echo "<tr ".$this->getrowbg()." nowrap>";
foreach ($arguments AS $k=>$v) {
echo "<td>$v</td>";
}
echo "</tr>\n";
}
function makeinput($arguments = array()) {
if (empty($arguments[size])) {
$arguments[size] = 35;
}
if (empty($arguments[maxlength])) {
$arguments[maxlength] = 50;
}
if ($arguments[html]) {
$arguments[value] = htmlspecialchars($arguments[value]);
}
if (!empty($arguments[css])) {
$class = "class=\"$arguments[css]\"";
}
if (empty($arguments[type])) {
$arguments[type] = "text";
}
echo "<tr ".$this->getrowbg()." nowrap ".$arguments[tr].">
<td width=100>$arguments[text]</td>
<td>
<input $class type=\"$arguments[type]\" name=\"$arguments[name]\" size=\"$arguments[size]\" maxlength=\"$arguments[maxlength]\" value=\"$arguments[value]\" $arguments[extra]>$arguments[text2]\n
</td>
</tr>\n";
}
function makecolorinput($arguments = array()) {
if (empty($arguments[size])) {
$arguments[size] = 35;
}
if (empty($arguments[maxlength])) {
$arguments[maxlength] = 50;
}
if (empty($arguments[nohtml])) {
$arguments[value] = htmlspecialchars($arguments[value]);
}
if (!empty($arguments[css])) {
$class = "class=\"$arguments[css]\"";
}
$arguments[size] = "7";
$arguments[maxlength] = "7";
//this.form.$arguments[name].style.backgroundColor=this.value;
echo "<tr ".$this->getrowbg()." nowrap>
<td>$arguments[text]</td>
<td>
<input onchange=\"this.style.backgroundColor=this.value;\" $class type=\"text\" name=\"$arguments[name]\" size=\"$arguments[size]\" maxlength=\"$arguments[maxlength]\" value=\"$arguments[value]\">\n
<input style=\"background-color:$arguments[value];\" name=\"$arguments[name]\" type=\"button\" value=\" \" disable>
</td>
</tr>\n";
}
function makefile($arguments = array()) {
echo "<tr ".$this->getrowbg()." nowrap>
<td>$arguments[text]</td>
<td>
<input type=\"file\" name=\"$arguments[name]\" $arguments[extra]>\n
</td>
</tr>\n";
}
function maketextarea($arguments = array()){
// $text,$name,$value="",$cols=40,$rows=7,$extra=""
if (emp
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
【项目资源】:包含前端、后端、移动开发、操作系统、人工智能、物联网、信息化管理、数据库、硬件开发、大数据、课程资源、音视频、网站开发等各种技术项目的源码。包括STM32、ESP8266、PHP、QT、Linux、iOS、C++、Java、python、web、C#、EDA、proteus、RTOS等项目的源码。【项目质量】:所有源码都经过严格测试,可以直接运行。功能在确认正常工作后才上传。【适用人群】:适用于希望学习不同技术领域的小白或进阶学习者。可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。【附加价值】:项目具有较高的学习借鉴价值,也可直接拿来修改复刻。对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。【沟通交流】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。鼓励下载和使用,并欢迎大家互相学习,共同进步。
资源推荐
资源详情
资源评论
收起资源包目录
基于HTML实现信息办公网站_落伍兄弟分类信息程序_zend_flz(HTML源码+数据集+项目使用说明).rar (49个子文件)
[信息办公]落伍兄弟分类信息程序_zend_flz
zend_flz
save_i.php 7KB
go.php 2KB
templates
index
re_list.html 117B
re.html 82B
foot.js 453B
isort.html 337B
post.html 496B
head.js 232B
list.html 1KB
search_i.html 1KB
index.html 2KB
images
gif.gif 4KB
head.html 719B
foot.html 66B
info.html 4KB
ws.html 796B
list.php 7KB
search.php 8KB
css.css 3KB
functions.php 3KB
post.php 6KB
cp
cp.css 4KB
class
forms.php 22KB
mysql.php 5KB
template.php 6KB
backup
GB2312.js 18KB
templates.php 1KB
config.php 471B
user.php 12KB
ws.php 7KB
ubb.php 2KB
global.php 5KB
database.php 7KB
info.php 15KB
py.php 10KB
functions_html.php 10KB
template.php 7KB
html.php 4KB
index.php 7KB
log.php 5KB
isort.php 10KB
area.php 9KB
infooperate.php 8KB
install.php 4KB
functions_admin.php 13KB
js_info.php 3KB
info_re.php 4KB
info_action.php 6KB
settings.php 3KB
共 49 条
- 1
资源评论
CrMylive.
- 粉丝: 1w+
- 资源: 4万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功