I have a form input in which I would like to submit the the value of 0, but it being treated as a null value. I don't want to have to use 00.
I'm using this code, what changes do I need to make?
PHP Code:if (!$_POST['description'] | !$_POST['id']) {
die('You did not complete all of the required fields');
}

