Guest User

Untitled

a guest
Feb 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. if (empty($_POST['finalidade_imob']) || $finalidade_imob == "Escolha 1" ||
  2. !in_array($_POST['finalidade_imob'], $fi_options)) {
  3. $finalidade_imob = "Escolha 1";
  4. $error++;
  5. } else {
  6. $finalidade_imob = $_POST['finalidade_imob'];
  7. }
  8.  
  9. //on the end
  10. if ($error !== 0) {
  11. return false;
  12. }
  13.  
  14. if ($error !== 0) {
  15. header('location:perfil.php#content_cadastro_completo');
  16. return false;
  17. }
  18.  
  19. if($error !== 0)
  20. { return false;//no need header() to go to the placeholder...
  21. }
Add Comment
Please, Sign In to add comment