friendlink_add.htm
3.62 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
<title>友情链接管理</title>
<script language='javascript'>
function CheckSubmit()
{
if(document.form1.url.value=="http://"||document.form1.url.value=="")
{
document.form1.url.focus();
alert("网址不能为空!");
return false;
}
if(document.form1.webname.value=="")
{
document.form1.webname.focus();
alert("网站名称不能为空!");
return false;
}
return true;
}
</script>
<link href="css/base.css" rel="stylesheet" type="text/css">
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
<tr>
<td height="28" background="images/tbg.gif" style="padding-left:10px;"><b><a href="friendlink_main.php"><u>友情链接管理</u></a></b>>>增加链接</td>
</tr>
<tr>
<td height="200" bgcolor="#FFFFFF" valign="top">
<form action="friendlink_add.php" method="post" enctype="multipart/form-data" name="form1" onSubmit="return CheckSubmit();";>
<input type="hidden" name="dopost" value="add" />
<table width="80%" border="0" cellspacing="1" cellpadding="3">
<tr>
<td width="19%" height="25">网址:</td>
<td width="81%">
<input name="url" type="text" id="url" value="http://" size="30" class='pubinputs' />
</td>
</tr>
<tr>
<td height="25">网站名称:</td>
<td>
<input name="webname" type="text" id="webname" size="30" class='pubinputs' />
</td>
</tr>
<tr>
<td width="19%" height="25">排列位置:</td>
<td width="81%">
<input name="sortrank" type="text" id="sortrank" value="1" size="10" class='pubinputs' style='width:60px' />
(由小到大排列)
</td>
</tr>
<tr>
<td height="25">网站Logo:</td>
<td>
<input name="logo" type="text" id="logo" size="30" class='pubinputs' />
(88*31 gif或jpg)
</td>
</tr>
<tr>
<td height="25">上传Logo:</td>
<td>
<input name="logoimg" type="file" id="logoimg" size="30" class='pubinputs' />
</td>
</tr>
<tr>
<td height="25">网站简况:</td>
<td><textarea name="msg" cols="50" rows="4" id="msg"></textarea></td>
</tr>
<tr>
<td height="25">站长Email:</td>
<td>
<input name="email" type="text" id="email" size="30" class='pubinputs' />
</td>
</tr>
<tr>
<td height="25">网站类型:</td>
<td>
<select name="typeid" id="typeid">
<?php
$dsql->SetQuery("select * from #@__flinktype");
$dsql->Execute();
while($row=$dsql->GetObject())
{
echo " <option value='".$row->id."'>".$row->typename."</option>\r\n";
}
?>
</select>
</td>
</tr>
<tr>
<td height="25">链接位置:</td>
<td>
<input type='radio' name='ischeck' value="1" checked='1' /> 内页
<input type='radio' name='ischeck' value="2"/> 首页
</td>
</tr>
<tr>
<td height="51"> </td>
<td>
<input type="submit" name="Submit" value=" 提 交 " class="coolbg np" />
<input type="reset" name="Submit" value=" 重 置 " class="coolbg np" />
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>