-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd_customer.php
More file actions
129 lines (120 loc) · 4.35 KB
/
add_customer.php
File metadata and controls
129 lines (120 loc) · 4.35 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<html lang="en">
<?php
include "head.php";
?>
<?php
session_start(); //starts the session
if($_SESSION['user']){ // checks if the user is logged in
}
else{
header("location: index.php"); // redirects if user is not logged in
}
$user = $_SESSION['user']; //assigns user value
require "connect.inc.php";
$customer_query=mysql_query("SELECT customer_id FROM customer") or die ("Error Occurred");
$client_query=mysql_query("SELECT client_id FROM client") or die ("Error Occurred");
$collector_query=mysql_query("SELECT collector_id FROM collector") or die ("Error Occurred");
?>
<body>
<div class="container">
<header>
<div class="logo" >Indus Shop Database Management</div>
<nav class="float-right">
<div class="pure-menu pure-menu-open pure-menu-horizontal">
<ul>
<li><a href="customer.php">Go Back</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div>
</nav>
</header>
<h2 align="center">Add Customer and Sale</h2>
<form class="pure-form pure-form-aligned" action="addcustomer.php" method="POST">
<fieldset>
<div class="pure-control-group">
<label for="name">Customer First Name</label>
<input id="name" type="text" placeholder="First name" name="f_name">
</div>
<div class="pure-control-group">
<label for="name">Customer Last Name</label>
<input id="name" type="text" placeholder="Last Name" name="l_name">
</div>
<div class="pure-control-group">
<label >Date of Birth</label>
<input type="date" placeholder="" name="dob">
</div>
<div class="pure-control-group">
<label >Sex</label>
<input type="radio" name="sex" value="m">Male
<input type="radio" name="sex" value="f">Female
</div>
<div class="pure-control-group">
<label >Item ID</label>
<select name = "item_id">
<?php
$item_query=mysql_query("SELECT item_id FROM item WHERE customer_id IS NULL ");
while ($row=mysql_fetch_array($item_query)) {
$cdTitle=$row["item_id"];
echo "<option value='$cdTitle'> $cdTitle </option>";
}
?>
</select>
<input readonly type="datetime" name="timestamp" value="<?php $timestamp = date('Y-m-d G:i:s'); echo $timestamp; ?>"/>
</div>
<br>
<br>
<h3>Add Address</h3>
<div class="pure-control-group">
<label >House Number</label>
<input type="number" placeholder="House number" name="house_no">
</select>
</div>
<div class="pure-control-group">
<label >Street</label>
<input type="text" placeholder="Street Name" name="street">
</select>
</div>
<div class="pure-control-group">
<label >City</label>
<input type="text" placeholder="City Name" name="city">
</select>
</div>
<div class="pure-control-group">
<label >State</label>
<input type="text" placeholder="State Name" name="state">
</select>
</div>
<div class="pure-control-group">
<label >Country</label>
<input type="text" placeholder="Country" name="country">
</select>
</div>
<br>
<br>
<h3>Add Contact</h3>
<div class="pure-control-group">
<label >Mobile</label>
<input type="number" placeholder="Mobile number" name="mobile">
</select>
</div>
<div class="pure-control-group">
<label >Landline</label>
<input type="number" placeholder="Landline" name="landline">
</select>
</div>
<div class="pure-control-group">
<label >Email</label>
<input type="email" placeholder="Email ID" name="email">
</select>
</div>
<div class="pure-controls">
<button type="submit" class="pure-button pure-button-primary">Submit</button>
</div>
</fieldset>
</form>
<?php
include "footer.php";
?>
</div>
</body>
</html>