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

📄 del.php

📁 辅助radius软件的管理程序web平台下的程序代码自己还没有测试过
💻 PHP
字号:
<?
include "../check.php"
?>
<?
include "../sql.php" 
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>

<body>
<p align="center">删除nas设备</p>
<form name="form1" method="post" action="delb.php">
  <table border="1" align="center">
    <tr>
      <td>NAS:</td>
      <td>
<select name="select">
	  <?
			$sql ="select * from nasport ";
			$reslust=mysql_query($sql);
			echo mysql_error();
			   while ($row=mysql_fetch_row($reslust))
			            {//echo $row[2]."<br>";
						echo    "<option value=".$row[1].">".$row[1]."</option>";
						} 
			?>
        </select></td>
      <td>
<input type="submit" name="Submit" value="删除"></td>
    </tr>
  </table>
</form>
<p>&nbsp;</p>
</body>
</html>

⌨️ 快捷键说明

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