Can someone explain why this line
$bool = isset($_POST['email']) && !empty(trim($_P OST['email']));
causes the error message "Can't use function return value in write
context". trim() returns a string. I test if it is empty. So what is
wrong with that?
$bool = isset($_POST['email']) && !empty(trim($_P OST['email']));
causes the error message "Can't use function return value in write
context". trim() returns a string. I test if it is empty. So what is
wrong with that?
Comment