-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlicenses_info.php
71 lines (63 loc) · 2.17 KB
/
licenses_info.php
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
61
62
63
64
65
66
67
68
69
70
71
<?php
include("./include/authcss.php");
include("./include/top_header.php");
?>
<?php @session_start();?>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf8">
<head>
<title>加速终端</title>
</head>
<body>
<?php
include("./css/include/conn.php");
$query=mysql_query("select * from licenses where css_license_id='$_GET[css_license_id]'");
$result=mysql_fetch_array($query);
//print_r($result);
?>
<form name="form1" method="post" action="licenses_modifyok.php">
<table width="600" height="432" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td align="center">授权频点ip地址:</td>
<td width="427" height="39">
<input name="ipqam_ip" type="text" value="<?php echo $result['ipqam_ip'];?>">
<input name="id" type="hidden" value="<?php echo $result['id'];?>"></td>
</tr>
<tr>
<td align="center">端口号:</td>
<td><input name="ipqam_port" type="text" value="<?php echo $result['ipqam_port'];?>"></td>
</tr>
<tr>
<td align="center">授权频点:</td>
<td><input name="frequence" type="text" value="<?php echo $result['frequence'];?>"> </td>
</tr>
<tr>
<td align="center">所属区域:</td>
<td><input name="belongs_area" type="text" value="<?php echo $result['belongs_area'];?>"> </td>
</tr>
<?php
$sql=mysql_query("select * from css_licenses where id='$_GET[css_license_id]'");
$info=mysql_fetch_array($sql);
?>
<tr>
<td align="center">CSSD-100-SL:</td>
<td><input name="cssd_code" type="text" value="<?php echo $info['cssd_code'];?>" style="width: 350px;"> </td>
</tr>
<tr>
<td align="center">CSSP-100-SL:</td>
<td><input name="cssp_code" type="text" value="<?php echo $info['cssp_code'];?>" style="width: 350px;"> </td>
</tr>
<tr>
<td>
<input name="Submit2" type="button" class="btn_grey" value="返回" onClick="history.back()"></td>
</tr>
</table>
</form>
<?php
include("./include/bottom_footer.php");
?>
</body>
</html>
<?php
include("./include/bottom_footer.php");
?>