-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupdateDatabase.php
More file actions
38 lines (30 loc) · 1005 Bytes
/
updateDatabase.php
File metadata and controls
38 lines (30 loc) · 1005 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Item | Update confirm</title>
<link rel="icon" href="inc/img/technology.png">
<link rel="stylesheet" href="inc/css/myStyle.css">
<link rel="stylesheet" href="inc/bootstrap/bootstrap.css">
<script src="inc/bootstrap/jquery-3.5.1.js"></script>
<script src="inc/bootstrap/bootstrap.js"></script>
</head>
<?php
require 'inc/template/header.php';
if (isset($super_admin)) {
require_once './dal/getConnection.php';
require_once('./dal/inventory/update/setOneItemSold.php');
echo '<br><br><h6>Updated !</h6>';
require_once './index.php';
}
else {
?>
<body>
<br><br>
<h5>sorry, no updating !</h5>
<h5>if you feel like buying this item, go to <a class="emLink" href="https://www.discogs.com/seller/tlize/profile"
target="_blank">my Discogs shop</a></h5>
</body>
<?php
}