clipbucket/upload/videos.php

32 lines
935 B
PHP
Raw Normal View History

2009-08-25 12:16:42 +00:00
<?php
/*
********************************************************************
| Copyright (c) 2007-2009 Clip-Bucket.com. All rights reserved.
| @ Author : ArslanHassan
| @ Software : ClipBucket , © PHPBucket.com
********************************************************************
2009-08-25 12:16:42 +00:00
*/
define("THIS_PAGE",'videos');
2009-08-25 12:16:42 +00:00
require 'includes/config.inc.php';
$pages->page_redir();
$userquery->perm_check('view_videos',true);
2009-08-25 12:16:42 +00:00
//Getting Video List
$page = mysql_clean($_GET['page']);
$get_limit = create_query_limit($page,VLISTPP);
$videos = $db->select("video",'*',$cond,$get_limit,"date_added DESC");
Assign('videos', $videos);
2009-08-25 12:16:42 +00:00
//Collecting Data for Pagination
$total_rows = $db->count('video','*',$cond);
$total_pages = count_pages($total_rows,VLISTPP);
2009-08-25 12:16:42 +00:00
//Pagination
$pages->paginate($total_pages,$page);
2009-08-25 12:16:42 +00:00
//Displaying The Template
template_files('videos.html');
display_it();
2009-08-25 12:16:42 +00:00
?>