0
I did a validation of email and Cpf to see if they are already registered, is there a better way to write the message in the variable $menssage? Than to do the validation one by one?
if($emailRetornado !== null || $cpfRetornado !== null){
if($emailRetornado !== null && $cpfRetornado !== null){
$menssage = "EMAIL e CPF já cadastrados!";
}
else{
//Ou o email foi retornado como não valido ou o cpf
if($emailRetornado !== null){
$menssage = "EMAIL já cadastrado!";
}
if($cpfRetornado !== null){
$menssage = "CPF já cadastrado!";
}
}
}
echo $menssage;