setContent($content); $note->setTags($_POST["tag"]); $note->save($env->db()); if (isset($_FILES['attachments'])) Attachment::createFromUploads($env->db(), $env->attachmentsPath(), $note, $_FILES['attachments']); $url = $env->documentRoot() . "n/" . $note->getId(); http_response_code(303); header("Location: {$url}"); echo 'Note created: '; } echo $env->twig()->render("/new_note.twig", []); } }