21 lines
437 B
PHP
21 lines
437 B
PHP
<?php
|
|
$username = 'appUser';
|
|
$password = 'password';
|
|
$config = require('config.php');
|
|
$db = new Database($config['database'], $username, $password);
|
|
|
|
$heading = "Note";
|
|
|
|
$note = $db->query('select * from notes where id = :id', [
|
|
'id' => $_GET['id']
|
|
])->fetch();
|
|
|
|
if (!$note) {
|
|
abort();
|
|
}
|
|
$currentUserId = 1;
|
|
if ($note['user_id'] != $currentUserId) {
|
|
abort(Response::FORBIDDEN);
|
|
}
|
|
//dd($notes);
|
|
require "views/note.view.php";
|