30 lines
804 B
PHP
30 lines
804 B
PHP
![]() |
<?php
|
||
|
/*
|
||
|
****************************************************************************************************
|
||
|
| Copyright (c) 2007-2008 Clip-Bucket.com. All rights reserved. |
|
||
|
| @ Author : ArslanHassan |
|
||
|
| @ Software : ClipBucket , © PHPBucket.com |
|
||
|
****************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
require'../includes/admin_config.php';
|
||
|
$userquery->admin_login_check();
|
||
|
$pages->page_redir();
|
||
|
|
||
|
|
||
|
if(isset($_POST['add_field']))
|
||
|
{
|
||
|
$array = $_POST;
|
||
|
$array['add_field'] = '';
|
||
|
add_custom_field($array);
|
||
|
}
|
||
|
|
||
|
|
||
|
Assign('msg',@$msg);
|
||
|
Template('header.html');
|
||
|
Template('leftmenu.html');
|
||
|
Template('message.html');
|
||
|
Template('add_custom_fields.html');
|
||
|
Template('footer.html');
|
||
|
|
||
|
?>
|