mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2024-12-29 10:56:12 +00:00
79 lines
2.8 KiB
PHP
79 lines
2.8 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Gallery</title>
|
|
<link rel="stylesheet" href="css/master.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Rubik" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600&display=swap">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@500&display=swap">
|
|
</head>
|
|
<body>
|
|
<?php
|
|
include("ui/header.php");
|
|
include("ui/conn.php");
|
|
|
|
// Check if user is logged in
|
|
if (isset($_SESSION["loggedin"]) && $_SESSION["loggedin"] === true) {
|
|
// Get post ID from button
|
|
if (isset($_POST['id'])) {
|
|
// Getting all image info from table
|
|
$get_image = "SELECT * FROM swag_table WHERE id = ".$_POST['id'];
|
|
$image_results = mysqli_query($conn, $get_image);
|
|
$image = mysqli_fetch_assoc($image_results);
|
|
|
|
// Check if user owns image
|
|
if (isset($_SESSION['id']) && $image['author'] == $_SESSION['id'] || $_SESSION['id'] == 1) {
|
|
// If no errors
|
|
if (empty($error)) {
|
|
// getting ready forSQL asky asky
|
|
$sql = "UPDATE swag_table SET alt=? WHERE id=?";
|
|
|
|
// Checking if databse is doing ok
|
|
if ($stmt = mysqli_prepare($conn, $sql)) {
|
|
mysqli_stmt_bind_param($stmt, "si", $param_alt, $param_id);
|
|
|
|
// Setting parameters
|
|
$param_alt = $_POST['alt'];
|
|
$param_id = $_POST['id'];
|
|
|
|
// Attempt to execute the prepared statement
|
|
if (mysqli_stmt_execute($stmt)) {
|
|
header("Location:https://superdupersecteteuploadtest.fluffybean.gay/image.php?id=".$_POST['id']."&update=success");
|
|
} else {
|
|
$error = "Something went fuckywucky, please try later";
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
$error = "You do not have edit rights";
|
|
}
|
|
}
|
|
} else {
|
|
$error = "You must be logged in to edit images";
|
|
//header("Location: https://superdupersecteteuploadtest.fluffybean.gay");
|
|
}
|
|
?>
|
|
|
|
<div class="edit-root">
|
|
<h2>Modify Information</h2>
|
|
<p class="space-below">This is a dangerous place to step foot into... tread carefully.</p>
|
|
<form class="flex-down between" method="POST" action="edit.php" enctype="multipart/form-data">
|
|
<input class="btn alert-default space-bottom-large" type="text" name="alt" placeholder="Description/Alt for image">
|
|
<?php echo "<button class='btn alert-default' type='submit' name='id' value=".$_GET["id"]."><img class='svg' src='assets/icons/edit.svg'>Update information</button>"; ?>
|
|
</form>
|
|
<?php
|
|
if (isset($error)) {
|
|
echo "<p class='alert alert-low space-top'>".$error."</p>";
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<?php
|
|
include("ui/top.html");
|
|
include("ui/footer.php");
|
|
?>
|
|
</body>
|
|
</html>
|