palm-paste/ViewPaste.php

24 lines
890 B
PHP
Raw Normal View History

<div class="container">
<div class="panel panel-default">
<div class="panel-body">
2016-06-09 10:02:09 +01:00
<?php
if(isset($uid)){
2016-06-09 10:02:09 +01:00
include "config/config.php";
include_once "includes/user.php";
$stmt = $conn->query('SELECT * FROM pastes WHERE uid="'.$uid.'"');
if($result = $stmt->fetch(PDO::FETCH_ASSOC)){
$conn = null;
if($result["exposure"]==2 && isset($_COOKIE["pp_sid"]) && isset($_COOKIE["pp_skey"]) && $result["owner"]!=GetUsersIDBySession($_COOKIE["pp_sid"],$_COOKIE["pp_skey"])){
echo "<h1>This paste is private</h1>";
die();
}
2016-06-13 13:49:13 +01:00
echo "<h1>".htmlspecialchars($result["title"], ENT_QUOTES, 'UTF-8')."</h1>";
echo "<textarea class=\"form-control\" rows=\"5\" disabled=\"true\">".htmlspecialchars($result["text"], ENT_QUOTES, 'UTF-8')."</textarea>";
}
else echo "Paste does not exist";
$conn = null;
2016-06-09 10:02:09 +01:00
} else echo "Error: id not set";
?>
</div>
</div>
2016-06-09 10:02:09 +01:00
</div>