singer.htm

来自「哈克MusicPHP音乐程序v1.0一套基本于PHP+TXT的在线音乐播放程序。」· HTM 代码 · 共 89 行

HTM
89
字号
<!--<?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> 到 
    <select name="cat">
<!--
EOT;
getcat();
print <<<EOT
--> </select>
	<input type=hidden name="action" value="newsinger">  <input type=submit value=" 提 交 "></td>
  </form>
  </tr>


<tr class=bg>
<form action="$basename" method="post">
  <td height=25>把歌手名:
    <select name="singer">
<!--
EOT;
getsinger();
print <<<EOT
--> </select>
     改名为 
     <input type=text name="name" size=30>
    <input type=hidden name="action" value="editsinger">
	<input type=submit value="改 名"></td>
  </form>
  </tr>

<tr class=bg>
<form action="$basename" method="post">
  <td height=25>歌手顺序修改:把
    <select name="singer">
<!--
EOT;
getsinger();
print <<<EOT
--> </select>
     放到 
<select name="singer2">
<!--
EOT;
getsinger();
print <<<EOT
--> </select> 后
     
    <input type=hidden name="action" value="editorder">
	<input type=submit value="修 改"></td>
  </form>
  </tr>
  
<tr class=bg>
<form action="$basename" method="post">
<input type="hidden" name="action" value="delsinger" />
  <td height=25>删除歌手:
    <select name="singer">
      <option selected="selected" value="">[请选择歌手]</option>
      <!--
EOT;
getsinger();
print <<<EOT
-->
    </select>
<input type=radio  name="job" value="del">只删除歌手  <input checked type=radio  name="job" value="delall">删除歌手及此歌手所有音乐&nbsp;&nbsp;
<input name="submit" type="submit" value="删 除" />
<br>(音乐多时,需要一些时间,请中途不要关闭浏览器,不然,嘿嘿)<br>
</td>
  </form>
  </tr>
</table>
<br />

<!--
EOT;
include_once PrintEot('adminbottom');
?>
-->

⌨️ 快捷键说明

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