-
Notifications
You must be signed in to change notification settings - Fork 143
/
add_customer.php
67 lines (56 loc) · 1.61 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
67
<?php
session_start();
require_once './config/config.php';
require_once './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_store = array_filter($_POST);
//Insert timestamp
$data_to_store['created_at'] = date('Y-m-d H:i:s');
$db = getDbInstance();
$last_id = $db->insert('customers', $data_to_store);
if($last_id)
{
$_SESSION['success'] = "Customer added successfully!";
header('location: customers.php');
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;
require_once 'includes/header.php';
?>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12">
<h2 class="page-header">Add Customers</h2>
</div>
</div>
<form class="form" action="" method="post" id="customer_form" enctype="multipart/form-data">
<?php include_once('./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_once 'includes/footer.php'; ?>