-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_value_enter.php
51 lines (49 loc) · 1.25 KB
/
db_value_enter.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
<?php require 'php database connection.php'; ?>
<!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>Document</title>
</head>
<body>
<form action="" method="POST">
<table>
<tr>
<td>Name</td>
<td><input type="text" name="e_name" require></td>
</tr>
<tr>
<td>Email</td>
<td><input type="email" name="e_email" require></td>
</tr>
<tr>
<td>Phone</td>
<td><input type="tel" name="e_phone" require></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="e_add" require></td>
</tr>
</table>
</form>
<?php
if(isset($_POST['e_add']))
{
$e_name = $_POST['e_name'];
$e_email = $_POST['e_email'];
$e_phone = $_POST['e_phone'];
$sql = "INSERT INTO employee (e_name,e_email,e_phone) VALUES ('$e_name','$e_email','$e_phone' )";
if(mysqli_query($conn,$sql))
{
echo "<script> alert ('Wow record created sucessfully');</script>";
}
else
{
echo "ERROR:" ,$sql . "<br/>", mysqli_error($conn);
}
}
?>
</body>
</html>