-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate.php
28 lines (27 loc) · 1.18 KB
/
create.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
<?php include('header.php'); ?>
<div class="mainsection">
<div class="container">
<h4 class="text-secondary mt-3">Create user -</h4>
<div class="row">
<form method="POST" action="saveuser.php">
<div class="form-group">
<label for="">Name </label>
<input type="text" class="form-control" name="name" placeholder="Name">
</div>
<div class="form-group">
<label for="">Age </label>
<input type="number" class="form-control" name="age" placeholder="Age">
</div>
<div class="form-group">
<label for="">Mobile </label>
<input type="varchar" class="form-control" name="mobile" placeholder="Mobile">
</div>
<div class="form-group">
<label for="">City </label>
<input type="text" class="form-control" name="city" placeholder="City">
</div>
<button type="submit" class="btn btn-sm btn-primary">Save</button>
</form>
</div>
</div>
</div>