You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.0 KiB
53 lines
1.0 KiB
2 years ago
|
<?php
|
||
|
include("header.php");
|
||
|
|
||
|
// display only if admin
|
||
|
if($_SESSION['suser_level'] >= 2) {
|
||
|
|
||
|
// check for submit
|
||
|
if ($_SERVER['REQUEST_METHOD']=="POST" ) {
|
||
|
$vlan_name = $_POST['vlan_name'];
|
||
|
$vlan_number= $_POST['vlan_number'];
|
||
|
mysql_query("INSERT INTO vlan (vlan_name, vlan_number) VALUE ('$vlan_name', '$vlan_number')") or die(mysql_error());
|
||
|
|
||
|
header("Location: vlan.php");
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
<form method="POST" action="vlanadd.php">
|
||
|
<table border="0">
|
||
|
<tr>
|
||
|
<td colspan="2">
|
||
|
<b>Add new VLAN:</b><br>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
VLAN name:
|
||
|
</td>
|
||
|
<td>
|
||
|
<input type="text" name="vlan_name">
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
VLAN ID:
|
||
|
</td>
|
||
|
<td>
|
||
|
<input type="text" name="vlan_number" size="3">
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="2" align="right">
|
||
|
<input type="submit" value="Submit"><input type="reset" value="Reset">
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
|
||
|
<?php
|
||
|
// end display only if admin
|
||
|
}
|
||
|
|
||
|
include("footer.php");
|
||
|
?>
|