-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathreg.php
executable file
·166 lines (78 loc) · 2.19 KB
/
reg.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
<?php
/*
******************************************************************
* CMS-TOKO-BIASAWAE v1.0 (code : Daun Muda). 2018
******************************************************************
* Dikembangkan oleh : Agus Muhajir *
* http://github.com/hajirodeon *
* http://hajirodeon.wordpress.com *
* http://facebook.com/hajirodeon *
* sms/wa/telegram : 081-829-88-54 *
* email : hajirodeon@gmail.com *
* ****************************************************************
*/
session_start();
//ambil nilai
require("inc/config.php");
require("inc/fungsi.php");
require("inc/koneksi.php");
require("template/$temaku/cp_config.php");
$tpl = LoadTpl("template/$temaku/reg.php");
nocache;
//nilai
$filenya = "reg.php";
$s = nosql($_REQUEST['s']);
$kd = nosql($_REQUEST['kd']);
$judul = "Menjadi Member";
$judulku = $judul;
$ke = "$sumber/$filenya";
//isi *START
ob_start();
require("i_statistik.php");
//isi
$istatistik = ob_get_contents();
ob_end_clean();
//isi *START
ob_start();
require("i_info.php");
//isi
$iinfo = ob_get_contents();
ob_end_clean();
//isi *START
ob_start();
require("template/js/number.js");
?>
<script language='javascript'>
//membuat document jquery
$(document).ready(function(){
$("#ilogin").load("i_reg.php?aksi=form");
});
</script>
<?php
echo '<table width="100%" border="0" cellpadding="5" cellspacing="5">
<tr>
<td valign="top">
<div id="ilogin">
<img src="template/img/progress-bar.gif" width="100" height="16">
</div>
<hr>
<div id="iproses" style="display:none">
<img src="template/img/progress-bar.gif" width="100" height="16">
</div>
<div id="ihasil"></div>
</td>
</tr>
</table>';
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//isi
$isi = ob_get_contents();
ob_end_clean();
//isi *START
ob_start();
require("i_member_menu.php");
//isi
$member_menu = ob_get_contents();
ob_end_clean();
require("inc/niltpl.php");
exit();
?>