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
2012-01-20 17:16:57 +01:00

14 lines
No EOL
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: /");
?>