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

📄 del_side_menu.php

📁 The Shift Log is a database entry and display system that is built off of PHP and MySQL. The log use
💻 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 For the Category Select
			$conn;
			$menu_sql = "SELECT m_id, m_name FROM side_menu"; 
			$menu_result = mysql_query($menu_sql); 
			$menu_options = "";
			$menu_num_options = ""; //for possible future use
			while ($row = mysql_fetch_array($menu_result)) 
				{ 
				$id = $row["m_id"];
				$menu = $row["m_name"]; 
    			$menu_options.="<OPTION VALUE=\"$id\">".$menu; 
				}
		?>
	<br />
		<!--delete Side Menu -->
	<form name="delete_menu" action="<?php echo $HTTP_SERVER_VARS['PHP_SELF']; ?>" method="post">
	<table width="38%" border="1" bgcolor="#CCCCCC">
  		<tr>
  			<td colspan="2" align="center"><p><strong>Delete Side Menu Link </strong></p>
		    </td>
    	</tr>
  		<tr>
    		<td width="38%">Select Link:</td>
    		<td width="62%" align="center"><select name="mid"><option value=0>Select One<?PHP echo $menu_options;?></select></td>
			
  		</tr>
  		<tr>
    		<td colspan="2" align="center"><input type="submit" name="d_menu" value="Delete" /></td>
		</tr>
	</table>
	</form>

⌨️ 快捷键说明

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