-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
218 lines (173 loc) · 6.88 KB
/
index.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!doctype HTML>
<!-- Coder Nilkamal Gotarne -->
<?php include "dbconnect.php"; ?>
<html>
<head>
<?php if(!isset($_POST['id'])) {
$update = 0; ?>
<title>Registration form</title>
<?php } else {
$update = 1;
$id = $_POST['id']; ?>
<title>Update Data</title>
<?php } ?>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous" >
</script>
<style>
h1 {
text-align: center;
}
span {
color: red;
}
h3 {
margin-left: 40px;
}
</style>
<script>
$(document).ready(function() {
// Allowing only number input on phone number
$("#phoneNumber").keydown(function (e) {
// Allow: backspace, delete, tab, escape, enter and .
if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 ||
// Allow: Ctrl/cmd+A
(e.keyCode == 65 && (e.ctrlKey === true || e.metaKey === true)) ||
// Allow: Ctrl/cmd+C
(e.keyCode == 67 && (e.ctrlKey === true || e.metaKey === true)) ||
// Allow: Ctrl/cmd+X
(e.keyCode == 88 && (e.ctrlKey === true || e.metaKey === true)) ||
// Allow: home, end, left, right
(e.keyCode >= 35 && e.keyCode <= 39)) {
// let it happen, don't do anything
return;
}
// Ensure that it is a number and stop the keypress
if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) {
e.preventDefault();
}
});
var update = <?php echo $update; ?> ;
// alert(update);
$("#submit").click(function(e) {
e.preventDefault(); // avoid to execute the actual submit of the form.
if(update == 0) { //code to save entry
// alert("hola");
if ($('#password').val() == $('#confirmPassword').val()) {
// alert('Same Value');
$.ajax({
type: "POST",
url: "storeData.php",
data: $("#formData").serialize(), // serializes the form's elements.
success: function(data)
{
alert(data); // show response from the php script.
// alert("hola");
}
});
} else {
alert("passwords does not match");
}
// end of save code
} else { //code to update entry
alert("edit mode");
$.ajax({
type: "POST",
url: "update.php",
data: $("#formData").serialize(), // serializes the form's elements.
success: function(data)
{
alert(data); // show response from the php script.
// alert("hola");
}
});
} //end of update code
});
})
</script>
</head>
<body>
<h3><u> Answer No: 1 </u></h3>
<?php include "nav.php" ?>
<div class="container">
<?php if($update == 0) { ?>
<h1>Registration form</h1>
<?php } else { ?>
<h1>Update Profile Data</h1>
<?php
$sql = "SELECT `ID`, `username`, `password`, `firstname`, `lastname`, `email`, `phone`, `location` FROM `userform` WHERE `ID` = '$id'";
$result = $conn->query($sql);
// var_dump($result);
$row = $result->fetch_assoc();
} ?>
<br>
<form class="form-horizontal" id="formData" >
<input type="integer" name="id" value="<?php echo $row['ID']; ?>" style="display:none"; >
<div class="form-group">
<label class="control-label col-sm-3" for="username"><span>*</span> Username :</label>
<div class="col-sm-9">
<input class="form-control" type="text" name="username" id="username" placeholder="Enter Username"
value="<?php if($update == 1) { echo $row['username']; } ?>" required/>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3" for="password"><span>*</span> Password : </label>
<div class="col-sm-9">
<input class="form-control" type="password" name="password" id="password" placeholder="Enter Password"
value="<?php if($update == 1) { echo $row['password']; } ?>" required/>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3" for="confirmPassword"><span>*</span> Confirm Password : </label>
<div class="col-sm-9">
<input class="form-control" type="password" name="confirmPassword" id="confirmPassword" placeholder="Confirm Password"
value="<?php if($update == 1) { echo $row['password']; } ?>" required/>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3" for="firstName"><span>*</span> First Name : </label>
<div class="col-sm-9">
<input class="form-control" type="text" name="firstName" id="firstName" placeholder="Enter First Name"
value="<?php if($update == 1) { echo $row['firstname']; } ?>" required/>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3" for="lastName">Last Name : </label>
<div class="col-sm-9">
<input class="form-control" type="text" name="lastName" id="lastName" placeholder="Enter Last Name"
value="<?php if($update == 1) { echo $row['lastname']; } ?>" />
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3" for="email"><span>*</span> Email : </label>
<div class="col-sm-9">
<input class="form-control" type="email" name="email" id="email" placeholder="Enter Email"
value="<?php if($update == 1) { echo $row['email']; } ?>" required/>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3" for="phoneNumber"><span>*</span> Phone No. :</label>
<div class="col-sm-9">
<input class="form-control" type="text" name="phoneNumber" id="phoneNumber" placeholder="Enter Phone number"
value="<?php if($update == 1) { echo $row['phone']; } ?>"required/>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-3" for="location"> Location :</label>
<div class="col-sm-9">
<input class="form-control" type="text" name="location" id="location" placeholder="Enter Location"
value="<?php if($update == 1) { echo $row['location']; } ?>" />
</div>
</div>
<button class="btn btn-default col-sm-offset-4" type="submit" id="submit">Save</button>
<button class="btn btn-default" type="Reset">Reset</button>
</form>
</div>
<?php $conn->close(); ?>
</body>
</html>