summaryrefslogtreecommitdiffstats
path: root/App/formhandler/add_listitem.php
blob: 10f58be134507cd265f324c22a74e38543e8a6a7 (plain)
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");