-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.php
More file actions
44 lines (24 loc) · 1.09 KB
/
edit.php
File metadata and controls
44 lines (24 loc) · 1.09 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
<head>
<meta charset="utf-8">
<!-- Bootstrap core CSS -->
<title>Welcome to CodeIgniter</title>
<link rel="stylesheet" type="text/css" href=" <?= base_url('shah/css/bootstrap.min.css');?> " >
<body>
<form method="post" action="<?= site_url('user/update'); ?>" enctype="multipart/form-data" >
<input type="text" name="id" class="form-control" value="<?php echo $r->id; ?>" id="exampleInputEmail1"
placeholder=" Enter Post name">
<div class="form-group">
<label>Post name</label>
<input type="text" name="name" class="form-control" value="<?php echo $r->name; ?>" id="exampleInputEmail1"
placeholder=" Enter Post name">
</div>
<div class="form-group">
<label>post pass</label>
<input type="text" name="pass" class="form-control" value="<?php echo $r->pass; ?>" id="exampleInputEmail1"
placeholder=" Enter Post pass">
</div>
<button type="submit" name="submit" value="save" class="btn btn-success">Submit</button>
<a href="indux.php" class="btn btn-danger" >Cancel</a>
</form>
</body>
</html>