📄 del_sub_form.php
字号:
<?PHP
#############################################################################
#This file is part of Shiftlog. #
# #
# Shiftlog is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 3 of the License, or #
# (at your option) any later version. #
# #
# Shiftlog is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
#############################################################################
//Menu the submenu
$conn;
$select_db;
$sub_sql="SELECT sid, subcat_name FROM subcat";
$sub_result=mysql_query($sub_sql);
$sub_options="";
$sub_num_options=""; //for possible future use
while ($row=mysql_fetch_array($sub_result))
{
$id=$row["sid"];
$scat=$row["subcat_name"];
$sub_options.="<OPTION VALUE=\"$scat\">".$scat;
$sub_num_options.="<OPTION VALUE=\"$id\">".$scat; //for possible future use
}
?>
<br />
<!-- Delete Subcategory Options -->
<form name="del_sub" action="<?php echo $HTTP_SERVER_VARS['PHP_SELF']; ?>" method="post">
<table bgcolor="#FF0000" width="35%" border="1">
<tr>
<td colspan="2" align="center"><p><strong>Delete Subcategory</strong></p>
<p><strong><font size="-1" color="#FFFFFF">Warning: THIS CHANGE CAN NOT BE UNDONE</font></strong></p>
<p><strong><font color="#FFFFFF" size="-1">THIS IS YOUR ONLY WARNING </font></strong></p></td>
</tr>
<tr>
<td width="45%">Select Category:</td>
<td width="55%" align="center"><select name="sub"><option value="0">Select One<?PHP echo $sub_options;?></select></td>
</tr>
<tr>
<td align="center"><input type="reset"></td>
<td><input type="submit" name="confirm_sub" value="Confirm" /></td>
</tr>
</table>
</form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -