| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/thelittlebigshow/app.original/admin/ |
Upload File : |
<?php
session_start();
require_once './config/config.php';
require_once 'includes/auth_validate.php';
//Only super admin is allowed to access this page
if ($_SESSION['admin_type'] !== 'super') {
// show permission denied message
echo 'Permission Denied';
exit();
}
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
$data_to_store = filter_input_array(INPUT_POST);
$db = getDbInstance();
//Check whether the user name already exists ;
$db->where('user_name',$data_to_store['user_name']);
$db->get('admin_accounts');
if($db->count >=1){
$_SESSION['failure'] = "User name already exists";
header('location: add_admin.php');
exit();
}
//Encrypt password
$data_to_store['password'] = password_hash($data_to_store['password'],PASSWORD_DEFAULT);
//reset db instance
$db = getDbInstance();
$last_id = $db->insert ('admin_accounts', $data_to_store);
if($last_id)
{
$_SESSION['success'] = "Admin user added successfully!";
header('location: admin_users.php');
exit();
}
}
$edit = false;
require_once 'includes/header.php';
?>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12">
<h2 class="page-header">Add User</h2>
</div>
</div>
<?php
include_once('includes/flash_messages.php');
?>
<form class="well form-horizontal" action=" " method="post" id="contact_form" enctype="multipart/form-data">
<?php include_once './forms/admin_users_form.php'; ?>
</form>
</div>
<?php include_once 'includes/footer.php'; ?>