-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredirect.php
30 lines (28 loc) · 1.08 KB
/
redirect.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
<html>
<head>
<?php
if( $_GET["t"]){
$time = $_GET["t"];
$imgContent = 'http://andreus.valec.net/stuff/clicker/image.php?t='.$time;
$titleContent = 'I made it in '. $time/1000 .' s! How about you?';
}else{
$imgContent = 'http://andreus.valec.net/stuff/clicker/sources/default.png';
$titleContent = 'How fast are your reflexes?';
}
?>
<meta property="og:type" content="game" />
<meta property="og:title" content="<?php echo $titleContent ?>" />
<meta property="og:description" content="Just click on circles and collect'em all!!" />
<meta property="og:image" content="<?php echo $imgContent ?>" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="fb:app_id" content="1036493763071256" />
</head>
<script type="text/javascript">
function redirect(){
window.location = "http://andreus.valec.net/stuff/clicker"
}
</script>
<body onload="redirect();">
</body>
</html>