How to download a file then redirect to another page in php?

后端 未结 4 1291
别那么骄傲
别那么骄傲 2020-12-11 05:58

Okay, I have the following php file:

    

        
4条回答
  •  再見小時候
    2020-12-11 06:27

    This code worked in my situation well. Maybe it will help you. It is main page:

    This script in main page:

    $(document).on('submit', 'form', function() {
      setTimeout(function() {
        window.location = "/thanks.html";
      }, 1000);
    });
    

    You must write your php code for download in dowload.php. If in download.php your code only downloads file, then your main page will not be reloaded. So the script which handles form will work.

提交回复
热议问题