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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
<?php if(id_sub_permission($id_sub)!=1){ permission_fail(); } $navig['link']=$data_name_menu_sub[name]; $navig['addlink_form']="เพิ่มหัวข้อลิงค์ย่อย"; navigator($navig); echo "<br>"; bar_header("เพิ่มหัวข้อลิงค์ย่อย"); // Bar_Header fieldset_top("ลิงค์");
import_request_variables('pG', 'p_'); if($p_add!="") { $add=trim($p_add); } if($p_topic!="") { $topic=trim($p_topic); } if($p_link_url!="") { $link_url=trim($p_link_url); } if($p_id_group!="") { $id_group=trim($p_id_group); } if($p_text!="") { $text=trim($p_text); }
if($p_evar!="") { $fulltexts=trim($p_evar); }
$userfile1_name=trim($_FILES['userfile1']['name']); $userfile2_name=trim($_FILES['userfile2']['name']); $userfile3_name=trim($_FILES['userfile3']['name']);
// add topic link if ($add == "1" && $topic != "") {
// Create_Filename 1 if ($userfile1_name != "") { // กำหนดชื่อไฟล์ที่ upload ใหม่ ทั้งนี้เพื่อให้ ไฟล์ไม่ซ้ำกัน $name1 = create_filename($userfile1_name); $dlink = "$_SESSION[web_name]/mainfile/" . $name1; $temp_name = $_FILES['userfile1']['tmp_name']; if (is_uploaded_file($_FILES['userfile1']['tmp_name'])) { if (!move_uploaded_file($temp_name, $dlink)) { } } }
// Create_Filename 2 if ($userfile2_name != "") { // กำหนดชื่อไฟล์ที่ upload ใหม่ ทั้งนี้เพื่อให้ ไฟล์ไม่ซ้ำกัน $name2 = create_filename($userfile2_name); $dlink = "$_SESSION[web_name]/mainfile/" . $name2; $temp_name = $_FILES['userfile2']['tmp_name']; if (is_uploaded_file($_FILES['userfile2']['tmp_name'])) { if (!move_uploaded_file($temp_name, $dlink)) { } } }
// Create_Filename 3 if ($userfile3_name != "") { // กำหนดชื่อไฟล์ที่ upload ใหม่ ทั้งนี้เพื่อให้ ไฟล์ไม่ซ้ำกัน $name3 = create_filename($userfile3_name); $dlink = "$_SESSION[web_name]/mainfile/" . $name3; $temp_name = $_FILES['userfile3']['tmp_name']; if (is_uploaded_file($_FILES['userfile3']['tmp_name'])) { if (!move_uploaded_file($temp_name, $dlink)) { } } }
$sqls= "ALTER TABLE `cms_link` CHANGE `status` `status` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL"; mysql_query($sqls);
$sqla= "ALTER TABLE `cms_link` ADD `text_full` TEXT NOT NULL AFTER `position`, ADD `picture1` VARCHAR(60) NOT NULL AFTER `text_full`, ADD `picture2` VARCHAR(60) NOT NULL AFTER `picture1`"; mysql_query($sqla);
$sql = "INSERT INTO `cms_link` (`id_link` ,`id_group` ,`url` ,`msg` ,`picture` ,`state` ,`status` ,`position`,`text_full`,`picture1`,`picture2` ) VALUES (NULL , '$id_group', '$link_url', '$topic','$name1', '1', '1', '1', '$fulltexts', '$name2','$name3')";
$result = mysql_query($sql);
echo"<br><br><center>ข้อมูลได้ถูกเพิ่มแล้ว<br><br></enter>"; echo "<meta http-equiv='refresh' content='2; url=index.php?mod=link&path=link'>"; }else{ ?>
<table width="550" border="0" align="center" cellpadding="1" cellspacing="3"> <form name="add" action="index.php?mod=addlink_form&path=link&add=1&id_group=<?php echo $id_group;?>" method="post" onSubmit="return checkadd()" enctype="multipart/form-data">
<tr height='35'> <td width=5%></td> <td width=25%><div align="left"><img src='coremain/images/marker.gif'> ใส่หัวข้อ</div></td> <td width=65%><div align="left"><input name="topic" type="text" size="40"></td> </tr>
<tr height='35'> <td width=5%></td> <?php text_editor(300, 200, 'ข้อความ', 3); ?>
</tr>
<tr height='35'> <td width=5%></td> <td width=25%><div align="left"><img src='coremain/images/marker.gif'> กรอก URL กรณี Link ไปยังเว็บอื่น</div></td> <td width=65%><div align="left"><input name="link_url" type="text" size="40" value=""><br> ให้ COPY URL ทั้งหมดมาใส่ในช่องนี้เลย เช่น https://www.google.co.th/ </td> </tr>
<tr height='35'> <td width=5%></td> <td width=25%><div align="left"><img src='coremain/images/marker.gif'> Upload ไฟล์ที่ 1</div></td> <td width=65%><div align="left"><input name="userfile1" type="file" size="40"></td> </tr>
<tr height='35'> <td width=5%></td> <td width=25%><div align="left"><img src='coremain/images/marker.gif'> Upload ไฟล์ที่ 2</div></td> <td width=65%><div align="left"><input name="userfile2" type="file" size="40"></td> </tr>
<tr height='35'> <td width=5%></td> <td width=25%><div align="left"><img src='coremain/images/marker.gif'> Upload ไฟล์ที่ 3</div></td> <td width=65%><div align="left"><input name="userfile3" type="file" size="40"></td> </tr> <?php text_button_insert(3) ?>
<!-- <tr height='35'> <td width=5%></td> <td width=15%></td> <td width=80%><div align="left"> <input type="submit" name="Submit" value="เพิ่มข้อมูล" onmouseover=this.style.cursor='hand'> </td> </tr>-->
</form> </table>
<?php } fieldset_down(); ?>
<script language="javascript"> function checkadd() { if(document.add.topic.value=="") { alert("กรุณากรอก ชื่อลิงค์!") ; document.add.topic.focus() ; return false ; } else if(document.add.link_url.value=="http://") { alert("กรุณากรอก URL ให้ถูกต้อง!") ; document.add.link_url.focus() ; return false ; } else return true ; } </script>
|