clipbucket/upload/create_group.php

28 lines
690 B
PHP
Raw Normal View History

2009-08-25 12:16:42 +00:00
<?php
/*
***************************************************************
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved.
| @ Author : ArslanHassan
| @ Software : ClipBucket , <EFBFBD> PHPBucket.com
***************************************************************
2009-08-25 12:16:42 +00:00
*/
define("THIS_PAGE","create_group");
define("PARENT_PAGE","groups");
2009-08-25 12:16:42 +00:00
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);
}
subtitle(lang('grp_crt_grp'));
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
?>