Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <div id="inserting">
  2. <button id="inserting_btn">Upload</button>
  3. <input type="file" id="inserting_file"/>
  4. </div>
  5.  
  6. $('#inserting_btn').click(function(){
  7. var file = $('#inserting_file').val();
  8. $.ajax({
  9. method: 'POST',
  10. url: 'input_text/import.php',
  11. data: 'file='+file,
  12. success: function(data){
  13. alert(data);
  14. }
  15. });
  16. });
  17.  
  18. if ($_FILES['file']['tmp_name'] ){
  19. echo 'yes';
  20. }
  21. else {
  22. echo 'no';
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement