-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadd-data.php
More file actions
67 lines (66 loc) · 2.07 KB
/
add-data.php
File metadata and controls
67 lines (66 loc) · 2.07 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
<?php
include_once 'dbconfig.php';
if(isset($_POST['btn-save'])) {
$fname = $_POST['first_name'];
$lname = $_POST['last_name'];
$email = $_POST['email_id'];
$contact = $_POST['contact_no'];
if($crud->create($fname, $lname, $email, $contact)) {
header("location: add-data.php?inserted");
} else {
header("location: add-data.php?failure");
}
}
?>
<?php include_once 'header.php'; ?>
<div class="clearfix"></div>
<?php
if(isset($_GET['inserted'])) {
?>
<div class="container">
<div class="alert alert-info">
<strong>Yesh!</strong>Successfully inserted<a href="index.php"> HOME</a>!
</div>
</div>
<?php
} else if(isset($_GET['failure'])) {
?>
<div class="container">
<div class="alert alert-warning">
<strong>Opp!</strong>Error while inserting data!
</div>
</div>
<?php
}
?>
<div class="clearfix"></div><br/>
<div class="container">
<form method="post">
<table class="table table-bordered">
<tr>
<td>First Name</td>
<td><input type="text" name="first_name" class="form-control" required /></td>
</tr>
<tr>
<td>Last Name</td>
<td><input type="text" name="last_name" class="form-control" required /></td>
</tr>
<tr>
<td>E-Mail</td>
<td><input type="text" name="email_id" class="form-control" required /></td>
</tr>
<tr>
<td>Contact No</td>
<td><input type="text" name="contact_no" class="form-control" required /></td>
</tr>
<tr>
<td colspan="2"><button type="submit" class="btn btn-primary" name="btn-save">
<span class="glyphicon glyphicon-plus"></span>Create New Record
</button>
<a href="index.php" class="btn btn-large btn-success"><i class="glyphicon glyphicon-backward"></i> Back to index</a>
</td>
</tr>
</table>
</form>
</div>
<?php include_once 'footer.php'; ?>