-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
72 lines (59 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ajax</title>
</head>
<body>
<h1 id="success-data"></h1>
<p id="error-msg" style="color: red;"></p>
<table>
<tr>
<td>name:</td>
<td><input type="text" id="name" name="name" placeholder="name"></td>
</tr>
<tr>
<td>Email:</td>
<td><input type="email" id="email" name="email" placeholder="email"></td>
</tr>
<tr>
<td>Phone:</td>
<td><input type="tel" id="phone" name="phone" placeholder="phone number"></td>
</tr>
<tr>
<td></td>
<td><button type="submit" id="form-submit-btn">submit</button></td>
</tr>
</table>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
$('#form-submit-btn').on('click', function(){
let name = $('#name').val();
let email = $('#email').val();
let phone = $('#phone').val();
if(name == '' || email == '' || phone == ''){
$('#error-msg').text('The field is required.');
}
else{
$.ajax({
url: 'save.php',
type: 'POST',
data: {
fast_name:name,
your_email:email,
your_phone:phone
},
success: function(response){
$('#success-data').text(response)
$('input').val('')
}
});
}
});
});
</script>
</body>
</html>