Skip to content

Instantly share code, notes, and snippets.

@phamquocbuu
Created September 14, 2013 07:36
Show Gist options
  • Save phamquocbuu/6559643 to your computer and use it in GitHub Desktop.
Save phamquocbuu/6559643 to your computer and use it in GitHub Desktop.
Check if any required fields in $_POST empty or not
$required = array('id', 'name');
// Loop over field names, make sure each one exists and is not empty
$error = false;
foreach($required as $field) {
if (empty($_POST[$field])) {
$error = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment