PK

ADDRLIN : /home/anibklip/ldhcgewc.org/
FLL :
Current File : //home/anibklip/ldhcgewc.org/video_play.php

<?php
$query = "select * from videos where video_id='$_GET[video_id]'";
$query = mysql_query($query) or die(mysql_error());
if($v=mysql_fetch_array($query)){
}
?>
<section class="page-header">
	<div class="container">		
		<h1>Videos</h1>
	</div><!--/ .container-->
</section><!--/ .page-header-->

<!-- - - - - - - - - - - - - - Main - - - - - - - - - - - - - - - - -->		

<section class="main container sbr clearfix">
	<!-- - - - - - - - - - Breadcrumbs - - - - - - - - - - - - -->
	<div class="breadcrumbs">
		<a title="Home" href="index.php">Home</a>
		<a title="Videos" href="index.php?paction=videos">Videos</a>
		<span><?php echo $v[titl]?></span>
	</div><!--/ .breadcrumbs-->
	<!-- - - - - - - - - end Breadcrumbs - - - - - - - - - - - -->	

	<!-- <div class="bordered">
		<figure class="add-border">
			<img src="images/temp/full-width.jpg" alt="" />
		</figure>
	</div> --> <!--/ .bordered-->
	
	<div class="eight1 columns">
		<p><?php echo $v[body]?></p>
	</div><!--/ .eight .columns-->

	 <div class="title"><h5><?=$v["titl"]?></h5></div>
	<div style="text-align:center;">
	<?php
	$jutjub = new YouTube($v["video"]);
	echo $jutjub->EmbedVideo($v["video"],"80%",450);
	?>
	</div>
	<div class="th-themepost-description">
		<p><?php echo $v[descp]?></p>
	</div>

</section><!--/ .main -->


PK 99