-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.php
executable file
·99 lines (55 loc) · 1.12 KB
/
index.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
<?php
session_start();
ini_set('max_execution_time', 0);
//ambil nilai
require("inc/config.php");
require("inc/fungsi.php");
require("inc/koneksi.php");
$tpl = LoadTpl("template/cp_depan.html");
nocache;
//nilai
$filenya = "index.php";
$judul = "BiasaWae-Ambil-Produk";
$judulku = $judul;
$kunci = balikin($_REQUEST['kunci']);
$s = nosql($_REQUEST['s']);
$page = nosql($_REQUEST['page']);
if ((empty($page)) OR ($page == "0"))
{
$page = "1";
}
//batal
if ($_POST['btnBTL'])
{
//re-direct
xloc($filenya);
exit();
}
//isi *START
ob_start();
echo '<form action="'.$filenya.'" enctype="multipart/form-data" method="post" name="formx">
<table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td align="center">
<h3>
Selamat Datang di BIASAWAE-Ambil-Produk
</h3>
<p>
Aplikasi ini bermanfaat untuk ambil daftar produk dari suatu toko yang ada di suatu marketplace.
</p>
<hr>
<p>
[<a href="bukalapak.php">BUKALAPAK</a>].
[<a href="tokopedia.php">TOKOPEDIA</a>].
</p>
<hr>
</td>
</tr>
</table>
</form>';
//isi
$isi = ob_get_contents();
ob_end_clean();
require("inc/niltpl.php");
exit();
?>