-
Notifications
You must be signed in to change notification settings - Fork 0
/
banner-update.php
45 lines (38 loc) · 1.17 KB
/
banner-update.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
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favico.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="favico.ico">
<title>Admin-Banner update</title>
<link rel="stylesheet" href="css/load.css">
</head>
<body>
<header>
<a href="adminpanel.php">Back To Dashboard </a>
</header>
<form method="post" enctype="multipart/form-data">
<fieldset>
<legend>Update Banner</legend>
<!--name of the file-->
<label>Name of Banner:</label>
<input type="text" name="name" class="field" required><br>
<!--select image-->
<label>Choose Image To upload :</label>
<input type="file" name="file" class="upload-btn" required><br>
<!--/select image-->
<!--Submit button-->
<input type="submit" value="submit" class="submit-btn" name="submit">
<!--/submit button-->
</fieldset>
</form>
</body>
</html>
<!--PHP SCRIPT TO show IMAGES from DATABASE-->
<?php
include 'dbconn.php';
include 'bannerscript.php';
?>
<?php mysqli_close($conn); ?>