-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
85 lines (61 loc) · 1.68 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
<?php
ERROR_REPORTING(0);
/*
Project: PBNL Forum v2.3
Coded By: Oyebamiji Akorede (Harkorede)
Facebook: http://facebook.com/harkorede94
Email: ([email protected])
CellPhone +2348029828364
Twitter: @harkorede94
WebSite: http://naijamobile.in
*/
require("../init.php");
if(!isloggedin())
{
header("location: ../index.php");
}
else
{
$user=$_SESSION["user"];
}
echo"<title>$config->title » Uploads</title>";
echo"<style type='text/css'>
<!--
.style1 {
color: #FF0000;
font-weight: bold;
}
.style2 {color: #FF0000}
-->
</style>
<div class='body_width'>";
include"../topnav.php";
echo"<div class='breadcrumb'><a href='../member/index.php'>Home</a> » Uploads</div>";
$msg=$_GET["msg"];
if(!empty($msg))
{
echo"<div class='msg'>$msg</div>";
}
echo"<center>";
include"../ads.php";
fblike();
echo"</center>";
echo"<center>
<div class='public_message'><div class='success'></div></div>
</center>
<div style='margin-top: 5px;' class='grid3'>
</div>
";
echo"<div class='grid3 middle'>
<div class='b_head'>
Upload & Download Zone
</div>
<br>
<span class='style2'>Enjoy the Best of Our Download Zone! Its Truly Loaded.</span>
<br>
<br>
";
echo"<div class='list'> <ul> <li><img src='".$config->url."addons/dload/upload-icon.png' width='16' height='16'> <a href='upload.php'>Upload file</a></li><li><img src='".$config->url."addons/dload/download-icon.png' width='16' height='16'> <a href='index2.php'>Download Here</a></li><li><img src='".$config->url."addons/dload/search.gif' width='16' height='16' border='0'> <a href='search.php'>Search For Files</a></li></ul></div> ";
echo"<br /><div class='link_button'><a href='".$config->url."main.php'>Go Back</a></div>";
include"../footer.php";
?>