Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. if($emailRetornado !== null || $cpfRetornado !== null){
  2. if($emailRetornado !== null && $cpfRetornado !== null){
  3. $menssage = "EMAIL e CPF já cadastrados!";
  4. }
  5. else{
  6. //Ou o email foi retornado como não valido ou o cpf
  7. if($emailRetornado !== null){
  8. $menssage = "EMAIL já cadastrado!";
  9. }
  10. if($cpfRetornado !== null){
  11. $menssage = "CPF já cadastrado!";
  12. }
  13. }
  14. }
  15. echo $menssage;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement