clipbucket/upload/groups.php

21 lines
686 B
PHP
Raw Normal View History

2009-08-25 12:16:42 +00:00
<?php
/*
****************************************************************************************************
| Copyright (c) 2007-2008 Clip-Bucket.com. All rights reserved. |
| @ Author : ArslanHassan |
2009-11-16 11:55:31 +00:00
| @ Software : ClipBucket , © PHPBucket.com |
2009-08-25 12:16:42 +00:00
****************************************************************************************************
*/
require 'includes/config.inc.php';
$pages->page_redir();
2009-11-16 11:55:31 +00:00
//Collect Data
$gpData = $groups->get_groups();
2009-08-25 12:16:42 +00:00
2009-11-16 11:55:31 +00:00
// Assign varibles
assign('category',$groups->get_categories());
assign('gps',$groups->list_groups());
2009-08-25 12:16:42 +00:00
2009-11-16 11:55:31 +00:00
template_files('groups.html');
display_it();
2009-08-25 12:16:42 +00:00
?>