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

📄 admin_2.php

📁 发布管理系统(sps)v2.0
💻 PHP
字号:
<?php 
@include "admin.inc";
?>
<script language="javascript">
function make_sure()
{
	if (settings.op[0].checked)
	{
		return confirm("确认要删除"+change_settings.type.value+"吗?");
	}
	return true;
}
</script>
<center>
<form name="settings" action="admin_2.do.php" method="post" onsubmit="return make_sure();">
<TABLE>
<tr>
	<th colspan="2">类别管理
<tr>
	<td><select name="type">
	<?php
	#显示所有的种类
	$type_rst = mysql_query("SELECT * FROM $table_type ORDER BY tid;");
	while ($type_row=mysql_fetch_array($type_rst)) {
		echo "<option value=".$type_row["type"];
		if ($type == $type_row["type"]) echo " selected";
		echo ">".$type_row["type"];
	}
	?>
	</select>
	<td><input type="radio" name="op" value="del">删除
<tr>
	<td><input type="text" name="rento">
	<td><input type="radio" name="op" value="ren">改名
<tr>
	<td><input type="text" name="add">
	<td><input type="radio" name="op" value="add">新增
<tr>
	<th colspan="2"><input type="submit" value="提交修改">
</table>
</form>
</center>

⌨️ 快捷键说明

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