I have done this several times before but for some reason I can\'t get the post to go through... I tried the php script with the variables set to _POST and without... When t
$_POST is an array, not a function. You need square brackets to access array indices:
$_POST
$newShift = $_POST['shift']; $bartenderUsername = $_POST['username'];