Ask Your Question
3

How can PHP verify if a field is blank?

asked 2022-02-11 11:00:00 +0000

devzero gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2021-08-23 00:00:00 +0000

lakamha gravatar image

PHP can verify if a field is blank by using the empty() or isset() function.

The empty() function checks if a variable is empty or not, including if it is null, 0, "", false, or an empty array.

Example:

if (empty($_POST['field_name'])) {
  // Field is empty
} else {
  // Field is not empty
}

The isset() function checks if a variable is set and not NULL.

Example:

if (!isset($_POST['field_name']) || trim($_POST['field_name']) == '') {
  // Field is empty
} else {
  // Field is not empty
}

The above example also checks if the field is set and if it only contains white spaces.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-02-11 11:00:00 +0000

Seen: 10 times

Last updated: Aug 23 '21