-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpsb_cari.php
executable file
·244 lines (188 loc) · 6.53 KB
/
psb_cari.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
<?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 : ///////
/////// * hajirodeon@yahoo.com ///////
/////// * hajirodeon@gmail.com ///////
/////// 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_cari.php";
$judul = "Hasil Pencarian";
$judulku = $judul;
$katkunci = nosql($_REQUEST['katkunci']);
$kunci = cegah2($_REQUEST['kunci']);
//ketahui tapel aktif
$qtp = mysql_query("SELECT * FROM psb_m_tapel ".
"WHERE status = 'true'");
$rtp = mysql_fetch_assoc($qtp);
$tp_tapelkd = nosql($rtp['kd']);
$tp_tahun1 = nosql($rtp['tahun1']);
$tp_tahun2 = nosql($rtp['tahun2']);
//isi *START
ob_start();
//kondisi pencarian
//nama
if ($katkunci == "cn01")
{
//query
$p = new Pager();
$start = $p->findStart($limit);
$sqlcount = "SELECT psb_siswa_calon.*, psb_siswa_calon.kd AS sckd, ".
"psb_siswa_calon.nama AS scnama ".
"FROM psb_siswa_calon ".
"WHERE psb_siswa_calon.nama LIKE '%$kunci%' ".
"AND psb_siswa_calon.kd_tapel = '$tp_tapelkd' ".
"ORDER BY psb_siswa_calon.no_daftar DESC";
$sqlresult = $sqlcount;
$count = mysql_num_rows(mysql_query($sqlcount));
$pages = $p->findPages($count, $limit);
$result = mysql_query("$sqlresult LIMIT ".$start.", ".$limit);
$target = "$filenya?katkunci=$katkunci&kunci=$kunci";
$pagelist = $p->pageList($_GET['page'], $pages, $target);
$data = mysql_fetch_array($result);
}
//alamat
else if ($katkunci == "cn02")
{
//query
$p = new Pager();
$start = $p->findStart($limit);
$sqlcount = "SELECT psb_siswa_calon.*, psb_siswa_calon.kd AS sckd, ".
"psb_siswa_calon.nama AS scnama ".
"FROM psb_siswa_calon ".
"WHERE psb_siswa_calon.alamat LIKE '%$kunci%' ".
"AND psb_siswa_calon.kd_tapel = '$tp_tapelkd' ".
"ORDER BY psb_siswa_calon.no_daftar DESC";
$sqlresult = $sqlcount;
$count = mysql_num_rows(mysql_query($sqlcount));
$pages = $p->findPages($count, $limit);
$result = mysql_query("$sqlresult LIMIT ".$start.", ".$limit);
$target = "$filenya?katkunci=$katkunci&kunci=$kunci";
$pagelist = $p->pageList($_GET['page'], $pages, $target);
$data = mysql_fetch_array($result);
}
//asal sekolah
else if ($katkunci == "cn03")
{
//query
$p = new Pager();
$start = $p->findStart($limit);
$sqlcount = "SELECT psb_siswa_calon.*, psb_siswa_calon.kd AS sckd, ".
"psb_siswa_calon.nama AS scnama ".
"FROM psb_siswa_calon ".
"WHERE psb_siswa_calon.asal_sekolah LIKE '%$kunci%' ".
"AND psb_siswa_calon.kd_tapel = '$tp_tapelkd' ".
"ORDER BY psb_siswa_calon.no_daftar DESC";
$sqlresult = $sqlcount;
$count = mysql_num_rows(mysql_query($sqlcount));
$pages = $p->findPages($count, $limit);
$result = mysql_query("$sqlresult LIMIT ".$start.", ".$limit);
$target = "$filenya?katkunci=$katkunci&kunci=$kunci";
$pagelist = $p->pageList($_GET['page'], $pages, $target);
$data = mysql_fetch_array($result);
}
//view //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
echo '<form action="'.$filenya.'" method="post" name="formx">';
//pencarian
require("inc/menu/psb_cari.php");
echo '<table width="100%" border="0" cellspacing="3" cellpadding="0">
<tr valign="top" align="left">
<td width="25%">';
//ambil data menu
require("inc/menu/psb_menu.php");
echo '</td>
<td align="left">
<big><strong>'.$judul.'</strong></big>
<br>';
//jika blm cari
if ((empty($katkunci)) OR (empty($kunci)))
{
echo "<p>
<font color='red'><strong>Anda Belum Melakukan Pencarian...!!</strong></font>
</p>";
}
else
{
if ($count != 0)
{
echo '<table width="100%" border="1" cellspacing="0" cellpadding="3">
<tr align="center" bgcolor="'.$warnaheader.'">
<td width="50"><strong><font color="'.$warnatext.'">No.Daftar</font></strong></td>
<td width="150"><strong><font color="'.$warnatext.'">Nama</font></strong></td>
<td><strong><font color="'.$warnatext.'">Alamat</font></strong></td>
<td width="150"><strong><font color="'.$warnatext.'">Asal Sekolah</font></strong></td>
<td width="100"><strong><font color="'.$warnatext.'">Waktu Pendaftaran</font></strong></td>
</tr>';
do
{
if ($warna_set ==0)
{
$warna = $warna01;
$warna_set = 1;
}
else
{
$warna = $warna02;
$warna_set = 0;
}
$kd = nosql($data['sckd']);
$d_noreg = nosql($data['no_daftar']);
$d_nama = balikin($data['scnama']);
$d_alamat = balikin($data['alamat']);
$d_asal_sekolah = balikin($data['asal_sekolah']);
$d_tgl_daftar = $data['tgl_daftar'];
echo "<tr valign=\"top\" bgcolor=\"$warna\" onmouseover=\"this.bgColor='$warnaover';\" onmouseout=\"this.bgColor='$warna';\">";
echo '<td>'.$d_noreg.'</td>
<td>'.$d_nama.'</td>
<td>'.$d_alamat.'</td>
<td>'.$d_asal_sekolah.'</td>
<td>'.$d_tgl_daftar.'</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> Data.</td>
</tr>
</table>';
}
else
{
echo "<p>
<font color='red'><strong>Yang Anda Cari Tidak Ada.</strong></font>
</p>";
}
}
echo '</td>
</tr>
</table>
</form>';
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//isi
$isi = ob_get_contents();
ob_end_clean();
require("inc/niltpl.php");
//diskonek
xclose($koneksi);
exit();
?>