mirror of
https://github.com/pikami/palm-paste.git
synced 2025-02-07 16:38:49 +00:00
24 lines
753 B
PHP
24 lines
753 B
PHP
<div class="container">
|
|
<div class="panel panel-default">
|
|
<div class="panel-body">
|
|
<?php
|
|
if(isset($uid)){
|
|
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 && $result["owner"]!=GetUsersIDBySession($_COOKIE["pp_sid"],$_COOKIE["pp_skey"])){
|
|
echo "<h1>This paste is private</h1>";
|
|
die();
|
|
}
|
|
echo "<h1>".$result["title"]."</h1>";
|
|
echo "<textarea class=\"form-control\" rows=\"5\" disabled=\"true\">".$result["text"]."</textarea>";
|
|
}
|
|
else echo "Paste does not exist";
|
|
$conn = null;
|
|
} else echo "Error: id not set";
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|