People can now post pastes!

This commit is contained in:
pikami
2016-06-09 08:22:48 +00:00
parent 7291bdc056
commit d1019f8df6
4 changed files with 49 additions and 3 deletions

24
post.php Normal file
View File

@@ -0,0 +1,24 @@
<?php
include "config/config.php";
if(isset($_POST["type"])){
echo "TYPE!";
//===New_Paste===//
if($_POST["type"]=="paste" && isset($_POST["text"])){
echo "TEXT!";
/* Set paste details */
$title = "Untitled";
$text = $_POST["text"];
if(isset($_POST["title"]))
$title = $_POST["title"];
/* Add paste to database */
$stmt = $conn->prepare("INSERT INTO pastes (title,text)
VALUES (:tit, :txt)");
$stmt->bindParam(':tit', $title);
$stmt->bindParam(':txt', $text);
$stmt->execute();
$conn = null; //close connection to database
}
}
echo "FIN!";
$conn = null;
?>