clipbucket/upload/create_group.php

24 lines
693 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 |
| @ Software : ClipBucket , <EFBFBD> PHPBucket.com |
****************************************************************************************************
*/
require 'includes/config.inc.php';
$userquery->logincheck();
$pages->page_redir();
2009-11-16 11:55:31 +00:00
// Creating Group if button is pressed
if(isset($_POST['create_group'])) {
$cbgroup->create_group($_POST,userid(),true);
}
2009-11-16 11:55:31 +00:00
2009-08-25 12:16:42 +00:00
2009-11-16 11:55:31 +00:00
template_files('create_group.html');
display_it();
2009-08-25 12:16:42 +00:00
?>