blob: d8aafd669d6aea990bc6ba1388d08d4356632dd2 (
plain)
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
|
<?php
include("include.php");
?>
<!Doctype html>
<head>
<title>Random Youtube Video</title>
<link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'>
<link rel='shortcut icon' href='/favicon.ico' type='image/x-icon' />
<link rel='stylesheet' type='text/css' href='style.css'/>
</head>
<body vlnk='#5b5b5b' vlink='#000000' link='#000000' alink='#9a9696'>
<center>
<?php
include("header.php");
include("piwik.php");
?>
<h1>A random "puu.sh" file!</h1>
<br>
<?php
$count = 0;
$count = get_image($count);
echo "
<br><br>
<p>We tried for " . $count . " times.</p>
<br>
<a href='/puush'>Try again</a>
</center>
";
?>
|