-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore.php
More file actions
41 lines (32 loc) · 1.25 KB
/
Copy pathcore.php
File metadata and controls
41 lines (32 loc) · 1.25 KB
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
<?php
echo "<html>";
echo "<head>";
echo "<title>AutoNet\\ CORE Information</title>";
echo "</head>";
echo "<body bgcolor=#009999 lang=EN-US style='tab-interval:.5in'>";
echo "<P fontsize=15 align=center > AutoNet\\ CORE Information </p>";
echo "<br>";
echo "<br>";
echo "<table border=1 align = center>";
echo "<tr>";
echo "<td>Core Switch</td><td> Get Info </td>";
echo "</tr>";
echo "<tr><form name=form2 method=get action=coreinf.php>";
echo "<td><input name=sw type=text READONLY value='EarthNET_Core_01'></td>";
echo "<td><input type=submit value=GetInfo></td>";
echo "</tr></form>";
echo "<tr><form name=form2 method=get action=coreinf.php>";
echo "<td><input name=sw type=text READONLY value='EarthNET_Core_02'></td>";
echo "<td><input type=submit value=GetInfo></td>";
echo "</tr></form>";
echo "<tr><form name=form2 method=get action=coreinf.php>";
echo "<td><input name=sw type=text READONLY value='SpaceNET_Core_01'></td>";
echo "<td><input type=submit value=GetInfo></td>";
echo "</tr></form>";
echo "<tr><form name=form2 method=get action=coreinf.php>";
echo "<td><input name=sw type=text READONLY value='SpaceNET_Core_02'></td>";
echo "<td><input type=submit value=GetInfo></td>";
echo "</tr></form>";
echo "</body>";
echo "</html>";
?>