-
Notifications
You must be signed in to change notification settings - Fork 0
/
changeimage1.php
106 lines (96 loc) · 4.28 KB
/
changeimage1.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
session_set_cookie_params(0);
session_start();
error_reporting(0);
include('includes/config.php');
if (strlen($_SESSION['login']) == 0) {
header('location: login.php');
} else {
if (isset($_POST['update'])) {
$image1 = $_FILES["img1"]["name"];
$id = intval($_GET['imgid']);
move_uploaded_file($_FILES["img1"]["tmp_name"], "assets/img/postimages/" . $_FILES["img1"]["name"]);
$sql = "UPDATE posts SET image1=:image1 WHERE id=:id";
$query = $dbh->prepare($sql);
$query->bindParam(':image1', $image1, PDO::PARAM_STR);
$query->bindParam(':id', $id, PDO::PARAM_STR);
$query->execute();
echo "<script>alert('Image updated successfully');</script>";
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Update Header Image</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
</head>
<body>
<!-- Header -->
<?php include 'includes/header.php'; ?>
<header class="masthead" style="background-image:url('assets/img/images (1).jpg');">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto">
<div class="site-heading">
<h1>Monva</h1><span class="subheading">GET DIGITAL NEWS&PRODUCTS! <br> KNOW MORE... </span></div>
</div>
</div>
</div>
</header>
<!-- Header -->
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto">
<h2 class="post-title">Update Header Image</h2>
<br>
<?php
$id = intval($_GET['imgid']);
$sql = "SELECT image1 FROM posts WHERE posts.id=:id";
$query = $dbh->prepare($sql);
$query->bindParam(':id', $id, PDO::PARAM_STR);
$query->execute();
$results = $query->fetchAll(PDO::FETCH_OBJ);
$cnt = 1;
if ($query->rowCount() > 0) {
foreach ($results as $result) { ?>
<div class="col-sm-8">
<img src="assets/img/postimages/<?php echo htmlentities($result->image1); ?>"
width="300" height="200"
style="border:solid 1px #000">
</
<?php }
} ?>
<form id="contactForm" method="post" enctype="multipart/form-data">
<br>
<div class="form-group">
<label class="col-sm-4 control-label">Upload New Header Image 1<span
style="color:red">*</span></label>
<div class="col-sm-8">
<input type="file" name="img1" required>
</div>
</div>
<div class="hr-dashed"></div>
<div id="success"></div>
<div class="form-group">
<button class="btn btn-primary" id="sendMessageButton" type="submit" name="update">Update
</button>
</div>
</form>
</div>
</div>
</div>
<!-- Footer -->
<?php include 'includes/footer.php'; ?>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/clean-blog.js"></script>
</body>
</html>
<?php } ?>