blob: a185b99449e01612d190b094fc3ccc5354da27e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
require_once("func_youtube.php");
require_once("func.php");
$vid = start($yt);
?>
<div class="row">
<h3><?php echo get_yt_title($vid);?></h3>
</div>
<br>
<div class="row">
<iframe width="560" height="315" src="https://www.youtube.com/embed/<?php echo $vid ?>" frameborder="0" allowfullscreen></iframe>
<br>
<br>
<p>Blocked in your country or want to download? Try <a href="/video/<?php echo $vid; ?>" title='Get more information about this video.' >this</a>!</p>
<p><a href="#" onclick="get_random_video()" class="mail" title="Press 'R' to get another video">Get another one</a></p>
</div>
<?php /*
<p><a href="/video/<?php echo $vid; ?>" class='mail'>Download</a> this video! | Blocked in your country? Try <a href="/video/<?php echo $vid; ?>" class='mail'>this</a>!</p>
*/ ?>
|