blob: 868bd8ab51df7f9540bd8baa932d2ac0243fb502 (
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
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
|
<?php
include("include.php");
if(!isset($_GET["id"])){
if(!isset($videoID)){
$videoID = start($yt);
}
} else {
$videoID = $_GET["id"];
}
?>
<!Doctype html>
<head>
<title>Random YouTube Video</title>
<meta http-equiv='Content-type' content='text/html; charset=utf-8' />
<link rel='shortcut icon' href='/favicon.ico' type='image/x-icon' />
<link rel='stylesheet' type='text/css' href='style.css'/>
<style type='text/css'>
.center {text-align:left;}
</style>
</head>
<!--body link='#000000' alink='#000000' vlink='#6a6862'>
<body link='#000000' alink='#000000' vlink='#41403d'>
<body link='#000000' alink='#000000' vlink='#2c2b29'-->
<body vlnk='#5b5b5b' vlink='#000000' link='#000000' alink='#9a9696'>
<center>
<?php
$new_id = start($yt);
include("header.php");
?>
<h1>A random youtube video!</h1> <br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/<?php echo $videoID ?>" frameborder="0" allowfullscreen></iframe> <br><br>
<?php
$data = get_yt_data($videoID);
?>
<table width='560' >
<tr>
<td class='center'>Video Titel: </td>
<td class='center'><?php echo $data["title"]; ?></td>
</tr>
<tr>
<td class='center'>Views: </td>
<td class='center'><?php echo $data["viewCount"]; ?></td>
</tr>
<tr>
<td class='center'>Rating: </td>
<td class='center'><?php echo $data["rate"]; ?></td>
</tr>
<tr>
<td class='center'>Uploader: </td>
<td class='center'><?php echo $data["author"]; ?></td>
</tr>
<tr>
<td></td><td><hr></td>
</tr>
<tr>
<td class='center'>Description: </td>
<td class='center'><?php echo $data["desc"]; ?></td>
</tr>
<tr>
<td></td><td><hr></td>
</tr>
<tr>
<td class='center'>Published: </td>
<td class='center'><?php echo $data["date"]; ?></td>
</tr>
</table>
<br><br>
<?php
echo "<a href=\"/youtube?id=".$new_id."\">Get another one</a>";
?>
</center>
<?php include("piwik.php");
|