-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathadd_customer.php
66 lines (61 loc) · 1.91 KB
/
add_customer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
session_start();
require_once 'config/config.php';
require_once BASE_PATH.'/includes/auth_validate.php';
// Serve POST method, After successful insert, redirect to customers.php page.
if ($_SERVER['REQUEST_METHOD'] === 'POST')
{
// Mass Insert Data. Keep "name" attribute in html form same as column name in mysql table.
$data_to_db = array_filter($_POST);
// Insert user and timestamp
$data_to_db['created_by'] = $_SESSION['user_id'];
$data_to_db['created_at'] = date('Y-m-d H:i:s');
$db = getDbInstance();
$last_id = $db->insert('customers', $data_to_db);
if ($last_id)
{
$_SESSION['success'] = 'Customer added successfully!';
// Redirect to the listing page
header('Location: customers.php');
// Important! Don't execute the rest put the exit/die.
exit();
}
else
{
echo 'Insert failed: ' . $db->getLastError();
exit();
}
}
// We are using same form for adding and editing. This is a create form so declare $edit = false.
$edit = false;
?>
<?php include BASE_PATH.'/includes/header.php'; ?>
<div class="container" style="margin-top: 15px;">
<div class="row">
<div class="col-lg-12">
<h2 class="page-header">Add Customer</h2>
</div>
</div>
<!-- Flash messages -->
<?php include BASE_PATH.'/includes/flash_messages.php'; ?>
<form class="form" action="" method="post" id="customer_form" enctype="multipart/form-data">
<?php include BASE_PATH.'/forms/customer_form.php'; ?>
</form>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('#customer_form').validate({
rules: {
f_name: {
required: true,
minlength: 3
},
l_name: {
required: true,
minlength: 3
},
}
});
});
</script>
<?php include BASE_PATH.'/includes/footer.php'; ?>