1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<html> <?PHP $paste = $_POST["paste"]; $md5sum = dechex(crc32($paste)); $fh = fopen($md5sum, 'w'); fwrite($fh, $paste); fclose($fh); echo("<p>Paste Added: <a href=\"http://p.of.je/$md5sum\"> http://p.of.je/$md5sum</a></p>"); header("Location: http://p.of.je/$md5sum"); ?> <p> <a href="http://p.of.je/">Go Back</a> </p> </html>