This repository has been archived on 2020-08-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
paste-manager/htdocs/save.php

23 lines
No EOL
453 B
PHP

<?php
require_once("../common.php");
if (!empty($_POST["content"]))
{
if (!isset($_POST["title"]))
$_POST["title"] = "";
if (!isset($_POST["author"]))
$_POST["author"] = "";
if (!isset($_POST["lang"]))
$_POST["lang"] = "";
if (!isset($_POST["hide"]))
$_POST["hide"] = 0;
$paste = new Paste();
$paste->create($_POST);
header("Location: /?".$paste->save());
exit;
}
header("Location: /");
?>