-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcerts.php
46 lines (29 loc) · 843 Bytes
/
certs.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
<?php
static $certs = Array(
'1' => Array(
'NAME' => 'Basic tutorial',
'DESC' => 'Follow this tutorial to learn how to play',
'PRICE' => '0',
),
'2' => Array(
'NAME' => 'Hacking 101',
'DESC' => 'Learn the basics of hacking',
'PRICE' => '0',
),
'3' => Array(
'NAME' => 'Intermediate hacking',
'DESC' => 'Improve your hacking techniques',
'PRICE' => '50',
),
'4' => Array(
'NAME' => 'Advanced hacking',
'DESC' => 'Meet the wonders of DDoS world',
'PRICE' => '200',
),
'5' => Array(
'NAME' => 'DDoS security',
'DESC' => 'Learn to protect yourself from DDoS',
'PRICE' => '500',
)
);
?>