-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpaste.php
49 lines (46 loc) · 3.01 KB
/
paste.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
<!DOCTYPE html>
<html lang="en">
<?php $PASTE_FOUND = false;
require_once("./database.php");
if (isset($_GET["id"])) {
$ID = htmlentities($_GET["id"]);
$get_paste_query_count = $SQL->query("SELECT COUNT(*) AS 'COUNT' FROM pastes WHERE id = '$ID'");
while ($count = $get_paste_query_count->fetch_assoc()) {
if ($count["COUNT"] > 0) {
$get_paste_query = $SQL->query("SELECT * FROM pastes WHERE id = '$ID'");
while ($row = $get_paste_query->fetch_assoc()) {
$CONTENT = htmlentities($row["content"]);
$MARK = htmlspecialchars($row["mark"]);
$NAME = htmlspecialchars($row["name"]);
}
global $MARK;
global $CONTENT;
$PASTE_FOUND = true;
} else {
header("Location: ./index.php");
}
global $PASTE_FOUND;
}
}
if ($PASTE_FOUND == false) {
header("Location: ./index.php");
}
?>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="./_styles/prism.css">
<link rel="stylesheet" href="./_styles/index.css">
<title>PasteSite - <?php echo $NAME; ?></title>
<link rel="icon" href="./_styles/favicon.png">
<script src="./_scripts/prism.js"></script>
<meta charset="UTF-8">
</head>
<body class="bg-dark bg-dark-500" style="background-color: #171a1f;">
<pre class="focus:outline-none line-numbers linkable-line-numbers format" data-line="" data-src="plugins/line-highlight/prism-line-highlight.js" data-src-status="loaded" data-start="1" id="Line" style="counter-reset:linenumber 19" tabindex="0"><code class="focus:outline-none format language-<?php if ($PASTE_FOUND) {
echo $MARK;
} ?>"><?php if (isset($CONTENT)) {
echo $CONTENT;
} ?></code></pre>
</body>
</html>