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

📄 gtm.php

📁 电子派单系统
💻 PHP
字号:
<?php
session_start();
include("resp.inc");
resp_db_connect_i();
?>
<html>
<head>
<title>申告类型生成表</title>
</head>
<body>
<?php
echo "<form name='gendty' method='post' action='gdty.php'>";
echo "<center><caption><font size=+3><b>申告类型生成表</b></font></caption></center>";
echo "<table align=center BGCOLOR='lightblue' width='380'>";
echo "<tr><td align=right>故障类型:</td><td><input type='text' name='dtype' size='20'  value='宽带故障'></td></tr>";
echo "<tr><td align=right>客户类型:</td>";
$tmp=mysql_query("select * from ctype");
echo "<td><select name='sctype' size='1'>";
while($ctype=mysql_fetch_array($tmp)) {
echo "<option value='$ctype[type]'>$ctype[type]";
}
echo "<tr><td align=right>总时限:</td><td><input type='text' name='atime' value='hh:mm:ss格式'></td></tr>";
echo "</select></td></tr>";
echo "<tr><th align=right>参与部门|<th align=left>|部门时限</tr>";
$tmp=mysql_query("select * from depart");
while($depart=mysql_fetch_array($tmp)) {
echo "<tr><td align=right>$depart[depart]:<input type='checkbox' name='$depart[depart]'  onclick='document.gendty.t$depart[depart].disabled=this.checked?false:true'></td><td><input type='text' name='t$depart[depart]' size='20' value='hh:mm:ss格式'  disabled></td></tr>";
}
echo "<tr><td colspan=2 align=center><input type='submit' value='提交完成'></td></tr>";
echo "</table>";
echo "</form>";
?>
</body>
</html>

⌨️ 快捷键说明

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