-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpsb_bukutamu.php
executable file
·264 lines (210 loc) · 6.13 KB
/
psb_bukutamu.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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<?php
///////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////
/////// SISFOKOL-PPDB ///////
///////////////////////////////////////////////////////////////////////
/////// Dibuat oleh : ///////
/////// Agus Muhajir, S.Kom ///////
/////// URL : ///////
/////// * http://sisfokol.wordpress.com/ ///////
/////// * http://hajirodeon.wordpress.com/ ///////
/////// * http://yahoogroup.com/groups/sisfokol/ ///////
/////// * http://yahoogroup.com/groups/linuxbiasawae/ ///////
/////// E-Mail : ///////
/////// * [email protected] ///////
/////// * [email protected] ///////
/////// HP/SMS : 081-829-88-54 ///////
///////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////
session_start();
//ambil nilai
require("inc/config.php");
require("inc/fungsi.php");
require("inc/koneksi.php");
require("inc/class/paging.php");
$tpl = LoadTpl("template/index.html");
nocache;
//nilai
$filenya = "psb_bukutamu.php";
$judul = "Buku Tamu";
$judulku = $judul;
$s = nosql($_REQUEST['s']);
//PROSES ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if ($_POST['btnSMP'])
{
//ambil nilai
$nama = cegah($_POST['nama']);
$alamat = cegah($_POST['alamat']);
$kelamin = nosql($_POST['kelamin']);
$email = cegah($_POST['email']);
$web = cegah($_POST['web']);
$komentar = cegah($_POST['komentar']);
$ip = nosql($_SERVER['REMOTE_ADDR']);
//cek null
if ((empty($nama)) OR (empty($alamat)) OR (empty($komentar)))
{
//re-direct
$pesan = "Input Tidak Lengkap. Harap Diulangi...!!";
pekem($pesan,$filenya);
exit();
}
else
{
//entry data
mysql_query("INSERT INTO psb_buku_tamu(kd, nama, alamat, kelamin, email, web, komentar, ip, postdate) VALUES ".
"('$x', '$nama', '$alamat', '$kelamin', '$email', '$web', '$komentar', '$ip', '$today')");
//re-direct
$pesan = "Terima Kasih Anda Telah Turut Memberikan Saran dan Kritik.";
pekem($pesan,$filenya);
exit();
}
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//isi *START
ob_start();
//view //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
echo '<form action="'.$filenya.'" method="post" name="formx">';
echo '<table width="100%" border="0" cellspacing="3" cellpadding="0">
<tr align="left" valign="top">
<td width="25%">';
//ambil data menu
require("inc/menu/psb_menu.php");
echo '</td>
<td align="left">
<big><strong>'.$judul.'</strong></big>
<br>
[<a href="'.$filenya.'?s=baru" title="Tulis Baru">Tulis Baru</a>]
<br>';
//jika tulis
if ($s == "baru")
{
echo '<p>
Harap Diisi Form Berikut Ini dengan Lengkap :
<br>
Nama :
<br>
<input name="nama" type="text" value="" size="30">
<br>
<br>
Alamat :
<br>
<input name="alamat" type="text" value="" size="50">
<br>
<br>
Kelamin :
<br>
<select name="kelamin">
<option value="" selected></option>
<option value="L">Laki-Laki</option>
<option value="P">Perempuan</option>
</select>
<br>
<br>
E-Mail :
<br>
<input name="email" type="text" value="" size="30">
<br>
<br>
Web :
<br>
<input name="web" type="text" value="" size="30">
<br>
<br>
Komentar :
<br>
<textarea name="komentar" cols="50" rows="5" wrap="virtual"></textarea>
<br>
<br>
IP :
<br>
<strong>'.$_SERVER['REMOTE_ADDR'].'</strong>
<br>
<br>
<p>
<input name="btnRST" type="reset" value="BATAL">
<input name="btnSMP" type="submit" value="SIMPAN">
</p>';
}
else
{
//query
$p = new Pager();
$start = $p->findStart($limit);
$sqlcount = "SELECT * FROM psb_buku_tamu ".
"ORDER BY postdate DESC";
$sqlresult = $sqlcount;
$count = mysql_num_rows(mysql_query($sqlcount));
$pages = $p->findPages($count, $limit);
$result = mysql_query("$sqlresult LIMIT ".$start.", ".$limit);
$pagelist = $p->pageList($_GET['page'], $pages, $target);
$data = mysql_fetch_array($result);
if ($count != 0)
{
echo '<table width="100%" border="0" cellspacing="0" cellpadding="3">';
do
{
if ($warna_set ==0)
{
$warna = $warna01;
$warna_set = 1;
}
else
{
$warna = $warna02;
$warna_set = 0;
}
$d_nama = balikin($data['nama']);
$d_alamat = balikin($data['alamat']);
$d_kelamin = nosql($data['kelamin']);
$d_email = balikin($data['email']);
$d_web = balikin($data['web']);
$d_komentar = balikin($data['komentar']);
$d_ip = nosql($data['ip']);
$d_postdate = $data['postdate'];
echo "<tr valign=\"top\" bgcolor=\"$warna\" onmouseover=\"this.bgColor='$warnaover';\" onmouseout=\"this.bgColor='$warna';\">";
echo '<td>
<em>'.$d_komentar.'</em>
<br>
Nama : <em>'.$d_nama.'</em>,
Alamat : <em>'.$d_alamat.'</em>,
Kelamin : <em>'.$d_kelamin.'</em>,
<br>
E-Mail : <em>'.$d_email.'</em>,
Web : <em>'.$d_web.'</em>,
IP : <em>'.$d_ip.'</em>
<br>
Postdate : <em>'.$d_postdate.'</em>
</td>
</tr>';
}
while ($data = mysql_fetch_assoc($result));
echo '</table>
<table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td align="right">'.$pagelist.' <strong><font color="#FF0000">'.$count.'</font></strong> Komentar.</td>
</tr>
</table>';
}
else
{
echo '<h3>
<font color="red"><strong>Belum Ada Yang Mengisi Buku Tamu.</strong></font>
</h3>';
}
}
echo '</td>
</tr>
</table>
</form>
<br>
<br>
<br>';
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//isi
$isi = ob_get_contents();
ob_end_clean();
require("inc/niltpl.php");
//diskonek
xclose($koneksi);
exit();
?>