-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.php
39 lines (24 loc) · 1.15 KB
/
edit.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
<?php
include "includes/includes.php";
?>
<div class="container bg-white mt-5 p-5 rounded">
<h1 class="mb-4 text-info">Edit the Post</h1>
<?php require "logic/editlogic.php";?>
<form method="POST">
<?php foreach($result as $r_u_d){?>
<?php if(!empty($r_u_d['text'])){?>
<textarea name="text" class="form-control" rows="8" stytle="height:100%;"><?php echo $r_u_d['text'];?></textarea>
<?php }elseif(!empty($r_u_d['video'])){?>
<input type="text" name="video" class="form-control" value="https://www.youtube.com/watch?v=<?php echo $r_u_d['video'];?>">
<?php }elseif(!empty($r_u_d['image'])){?>
<input type="text" name="image" class="form-control" value="<?php echo $r_u_d['image'];?>">
<?php }elseif(!empty($r_u_d['link'])){?>
<input type="text" name="link" class="form-control" value="<?php echo $r_u_d['link'];?>">
<?php }?>
<?php }?>
<button class="btn btn-primary mt-3" name="update"><i class="fas fa-edit"></i> Update</button>
</form>
</div>
<?php
include "html/footer.php";
?>