clipbucket/upload/watch_video.php
Arslan Hassan d65e7ee595 ADDED : ClipBucket Object Class
ADDED : New ClipBucket Template
ADDED : New Templating System
ADDED : New Favicon
ADDED : New ClipBucket Player
2009-09-28 05:23:50 +00:00

32 lines
No EOL
757 B
PHP

<?php
/*
******************************************************************
| Copyright (c) 2007-2009 Clip-Bucket.com. All rights reserved.
| @ Author : ArslanHassan
| @ Software : ClipBucket , © PHPBucket.com
*******************************************************************
*/
define("THIS_PAGE",'watch_video');
require 'includes/config.inc.php';
$pages->page_redir();
//Getting Video Key
$vkey = @$_GET['v'];
if(video_playable($vkey))
{
$vdo = $cbvid->get_video($vkey);
assign('vdo',$vdo);
//Addming Comment
if(isset($_POST['add_comment']))
{
$cbvideo->add_comment($_POST['comment'],$vdo['videoid']);
}
}
//Displaying The Template
template_files('watch_video.html');
display_it();
?>