del.php

来自「辅助radius软件的管理程序web平台下的程序代码自己还没有测试过」· PHP 代码 · 共 39 行

PHP
39
字号
<?
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 + =
减小字号Ctrl + -
显示快捷键?