-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.php
52 lines (50 loc) · 1.87 KB
/
user.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
<?php
include './connect.php';
if (isset($_POST['submit'])) {
$name = $_POST['name'];
$email = $_POST['email'];
$mobile = $_POST['mobile'];
$password = $_POST['password'];
$sql = "insert into `crud`(name, email, mobile, password)
values('$name', '$email', '$mobile', '$password')";
$result = mysqli_query($con, $sql);
if ($result) {
header('location:display.php');
}
else {
die (mysqli_error($con));
}
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PHP-CRUD</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container my-5">
<form method="post">
<div class="mb-3">
<label>Name</label>
<input type="text" class="form-control" name="name" placeholder="Your name" required autocomplete="off">
</div>
<div class="mb-3">
<label>Email</label>
<input type="email" class="form-control" name="email" placeholder="Your email" required autocomplete="off">
</div>
<div class="mb-3">
<label>Mobile</label>
<input type="text" class="form-control" name="mobile" placeholder="Your mobile number" required autocomplete="off">
</div>
<div class="mb-3">
<label>Password</label>
<input type="password" class="form-control" name="password" placeholder="Your password" required autocomplete="off">
</div>
<button type="submit" class="btn btn-primary" name="submit">Submit</button>
</form>
</div>
</body>
</html>