This repository has been archived on 2020-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
paste-manager/htdocs/save.php
2012-01-20 17:16:57 +01:00

14 lines
211 B
PHP

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