cat.htm
来自「哈克MusicPHP音乐程序v1.0一套基本于PHP+TXT的在线音乐播放程序。」· HTM 代码 · 共 59 行
HTM
59 行
<!--<?php
include_once PrintEot('top');
print <<<EOT
-->
<table width=98% border=0 align=center cellpadding=3 cellspacing=1 class=tableborder>
<tr class=header>
<td height=25><strong>类别管理</strong></td>
</tr>
<tr class=bg>
<form action="$basename" method="post">
<td height=25>新增总分类:<input type=text name="name" size=30><input type=hidden name="action" value="newcat"> <input type=submit value=" 提 交 "></td>
</form>
</tr>
<tr class=bg>
<form action="$basename" method="post">
<td height=25>把总分类名
<select name="cat"><option selected value="">[请选择分类]</option>
<!--
EOT;
getcat();
print <<<EOT
--> </select>
改名为
<input type=text name="name" size=30>
<input type=hidden name="action" value="editcat">
<input type=submit value="改 名"></td>
</form>
</tr>
<tr class=bg>
<form action="$basename" method="post" name="FORM">
<td height=25>删除总分类
<select name="cat">
<option selected="selected" value="">[请选择分类]</option>
<!--
EOT;
getcat();
print <<<EOT
-->
</select>
(删除前,请先删除此总分类下的歌手,不然,呵呵,不要怪我没提醒你啊)
<input type="hidden" name="action" value="delcat" />
<input name="submit" type="submit" value="删 除" /></td>
</form>
</tr>
</table>
<br />
<!--
EOT;
include_once PrintEot('adminbottom');
?>
-->
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?