1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php /** * Created by PhpStorm. * User: brolaugh * Date: 2/25/16 * Time: 10:34 PM */ chdir("../.."); include_once 'Helper.php'; if(!isset($_POST['tasktitle'])){ header("Location:../../dashboard"); exit(); } $insert = new \App\database\Insert(); $insert->AddCompleteListEntry($_POST['tasktitle'], $_POST['taskbody'], $_POST['taskperson']); //header("Location:../../dashboard");