clipbucket/upload/videos.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

33 lines
No EOL
1,004 B
PHP

<?php
/*
****************************************************************************************************
| Copyright (c) 2007-2009 Clip-Bucket.com. All rights reserved. |
| @ Author : ArslanHassan |
| @ Software : ClipBucket , © PHPBucket.com |
****************************************************************************************************
*/
define("THIS_PAGE",'videos');
require 'includes/config.inc.php';
$pages->page_redir();
//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);
//Collecting Data for Pagination
$total_rows = $db->count('video','*',$cond);
$records = $total_rows/VLISTPP;
$total_pages = round($records+0.49,0);
//Pagination
$pages->paginate($total_pages,$page);
//Displaying The Template
template_files('videos.html');
display_it();
?>