-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
51 lines (37 loc) · 848 Bytes
/
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
<?php
/*
Author: JB Braendel (Jbudone)
Date: February 7th, 2011
File: index.php
Desc: Spider Crawler for the market.android site
*/
// Requirements
require_once('system/controller.php');
header('Content-Type: text/html, charset='.constant('ENCODING_SET'));
///////////
///
///
/// INDEX
///
/// Index for the Market.Android spider crawler
/////////////////////////////////
/////////////////////////////////
?>
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=<?php echo constant('ENCODING_SET'); ?>">
<style type="text/css">
body {
white-space:pre;
}
</style>
</head>
<body>
<?php
$controller=new Controller();
$controller->start();
?>
</body>
<?php
/* End of File -- index */