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