1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
<?
# IRM - The Information Resource Manager
# Copyright (C) 1999,2000 Yann Ramin
#
# This program 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 2 of the License, or
# (at your option) any later version.
#
# This program 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 (in file COPYING) for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# $Id: networking-connecter.php3,v 1.2 2000/05/04 00:20:00 atrus Exp $
#
################################################################################
# CHANGELOG #
################################################################################
# 3/17/00 - Yann Ramin: Added file to allow port operations (disconnect, connect)
################################################################################
include("../irm.inc");
AuthCheck("admin");
$db = new DB;
commonHeader("IRM Networking Connector Wizard - Step 1 of 3");
?>
<?
PRINT "This is where you can connect a port to another port easily. To begin, choose which device you wish to connect it to.";
PRINT "<form method=get action=networking-connecter-2.php3>";
PRINT "<p>Connect to a computer with <select name=type szie=1><option value=name>name</option><option value=id>ID</option></select>";
PRINT " <input type=text size=20 name=comp><input type=hidden name=pID1 value=$ID><input type=hidden name=go_back value=\"$HTTP_REFERER\"><input type=submit value=\"Continue ->\"></form>";
PRINT "<p><form method=get action=networking-connecter-3.php3>Or choose a network device:";
$query = "SELECT ID,name,location from networking";
$result = $db->query($query);
$number = $db->numrows($result);
PRINT "<select size=1 name=dID>";
while ($i < $number) {
$dID = $db->result($result, $i, "ID");
$name = $db->result($result, $i, "name");
$location = $db->result($result, $i, "location");
PRINT "<option value=$dID>$name ($location)</option>";
$i++;
}
PRINT "</select><input type=hidden name=device_type value=2><input type=hidden name=go_back value=\"$HTTP_REFERER\"><input type=hidden name=pID1 value=$ID><input type=submit value=\"Continue ->\"></form>";
commonFooter();
?>
|