I\'ll just keep this question short. What is wrong with my php code, it keeps outputting 0 or Required Field(s) is missing. Here\'s the code
Just debug the $_POST['id'] and $_POST['status_id']. Before this line.
$_POST['id']
$_POST['status_id']
if (isset($_POST['id']) && isset($_POST['status_id'])) {
you will find answer automatically. Hopefully one of two post variables is not set. For debug use print_r($_POST);
print_r($_POST);