문제

When my form has been submitted i always check if the form is isset and then check if all fields are also isset

This is my php code :

if(isset($_POST)) {
  if(isset($_POST['username'], $_POST['password'])) {
    // process
  }
}

My question is, does my first check of isset is if the form itself is submitted and then check again for each input if it isset or if the moment i use

if(isset($_POST)) { }

it will actually check of the fields inside that form?

i hope you get my point thanks in advance.

도움이 되었습니까?

해결책

Well, $_POST is always set, so first statement is not necessary.. Check only if specific fields are set.

EDIT: As noted in comment, isset() give you only information, if some variable is set, not if it has some value. empty() can tell you, if you have something in it.

EDIT 2: Just to be sure if empty() will or will not notice you on undefined POST field, try this:

error_reporting(E_ALL);
var_dump(empty($_POST['undefined']));

You will see that empty() works with undefined indexes too.

다른 팁

If you want to check if a post index has been sent, reagardless if it contains an empty string or some data use array_key_exists():

if(array_key_exists($_POST['foo']) && array_key_exists($_POST['bar'])) ..

wtf??

BETTER use $_SERVER['REQUEST_METHOD']

if ($_SERVER['REQUEST_METHOD'] == 'POST') {
// process
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top