forked from sarfraznawaz2005/BloggerCMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtags.php
More file actions
53 lines (44 loc) · 1.75 KB
/
Copy pathtags.php
File metadata and controls
53 lines (44 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<?php require_once 'includes/head.php' ?>
</head>
<body>
<div id="wrapper">
<!-- Navigation -->
<?php require_once 'includes/nav.php' ?>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header"><?php echo $title; ?></h1>
<?php require_once 'includes/line.php' ?>
<div class="content">
<form action="<?php echo $root; ?>/update_tags" class="form-horizontal" method="post">
<div class="row">
<div class="form-group col-lg-8">
<label for="tags">Tags</label>
<select required name="tags[]" id="tags" class="select2 tags form-control" multiple="multiple">
<?php
foreach ($data as $tag) {
?>
<option selected value="<?php echo $tag; ?>"><?php echo $tag; ?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="row">
<button name="addpost" value="addpost" type="submit" class="btn btn-success">
<i class="fa fa-save"></i> Update Tags
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<?php require_once 'includes/foot.php' ?>
</body>
</html>