| 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/admin/ |
Upload File : |
<?php
session_start();
require_once './config/config.php';
require_once 'includes/auth_validate.php';
// Sanitize if you want
$customer_id = filter_input(INPUT_GET, 'customer_id', FILTER_VALIDATE_INT);
$operation = filter_input(INPUT_GET, 'operation',FILTER_SANITIZE_STRING);
($operation == 'edit') ? $edit = true : $edit = false;
$db = getDbInstance();
//Handle update request. As the form's action attribute is set to the same script, but 'POST' method,
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
//Get customer id form query string parameter.
$customer_id = filter_input(INPUT_GET, 'customer_id', FILTER_SANITIZE_STRING);
//Get input data
$data_to_update = filter_input_array(INPUT_POST);
$data_to_update['updated_at'] = date('Y-m-d H:i:s');
$db = getDbInstance();
$db->where('id',$customer_id);
$stat = $db->update('customers', $data_to_update);
if($stat)
{
$_SESSION['success'] = "Customer updated successfully!";
//Redirect to the listing page,
header('location: customers.php');
//Important! Don't execute the rest put the exit/die.
exit();
}
}
//If edit variable is set, we are performing the update operation.
if($edit)
{
$db->where('id', $customer_id);
//Get data to pre-populate the form.
$customer = $db->getOne("customers");
}
?>
<?php
include_once 'includes/header.php';
?>
<div id="page-wrapper">
<div class="row">
<h2 class="page-header">Update Customer</h2>
</div>
<!-- Flash messages -->
<?php
include('./includes/flash_messages.php')
?>
<form class="" action="" method="post" enctype="multipart/form-data" id="contact_form">
<?php
//Include the common form for add and edit
require_once('./forms/customer_form.php');
?>
</form>
</div>
<?php include_once 'includes/footer.php'; ?>