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

14 lines
211 B
PHP
Raw Normal View History

2012-01-18 23:23:08 +00:00
<?php
require_once("../common.php");
if (!empty($_POST["content"]))
{
2012-01-20 16:16:57 +00:00
$paste = new Paste();
$paste->create($_POST);
2012-01-18 23:23:08 +00:00
2012-01-20 16:16:57 +00:00
header("Location: /?".$paste->save());
exit;
2012-01-18 23:23:08 +00:00
}
header("Location: /");
?>