-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAnalytics.php
More file actions
57 lines (48 loc) · 1.27 KB
/
Copy pathAnalytics.php
File metadata and controls
57 lines (48 loc) · 1.27 KB
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
<?php include 'Header.html'; ?>
<?php
require_once '/Backend/FetchData.php';
$shortURL= filter_input(INPUT_GET,'url',FILTER_SANITIZE_STRING);
$shortURL=urlencode($shortURL);
$shortURL=strip_tags($shortURL);
list($cid,$type)=determineType($shortURL);
list($author,$views,$file_size,$ratings)=processContentDetails($cid);
?>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-Frame-Options" content="deny">
<title>Share.gy: Content analytics</title>
<style>
body{
color: #555;
}
#logoImage {
width: 22%;
height: auto!important;
}
@media (min-width : 304px) and (max-width: 415px){
#mobileMenu{
display: inline-block;
}
.members{
display: none;
}
}
.members{
margin-left: 57%!important;
}
</style>
</head><center>
<h2>This page is under development</h2>
<body>
</br></br></br></br></br></br>
<i> <p>but here are few basic details you may be looking for</p></i>
<pre>
<?php
echo "<h1>Author : $author"
. " Views : $views"
. " Ratings: N/A</h1>";
?>
</pre>
</body></center>
</html>