Guest User

Untitled

a guest
Nov 18th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. //IMPORT BD
  2. function importar_bd(){
  3. var formData = new FormData();
  4. formData.append("archivo", document.getElementById("importar_bd_file").files[0]);
  5. var ruta = "upload.php";
  6. $.ajax({
  7. url: ruta,
  8. type: "POST",
  9. data: formData,
  10. contentType: false,
  11. processData: false,
  12. success: function(respuesta)
  13. {
  14. alert(respuesta);
  15. },
  16. error: function() {
  17. alert("Some error message here");
  18. }
  19. });
  20. return false;
  21. }
  22.  
  23. //EXPORT BD
  24. function exportar_bd(){
  25. window.location.href = "my_db.db";
  26. }
Add Comment
Please, Sign In to add comment