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

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

Okay, I have the following php file:

    

        
4条回答
  •  一生所求
    2020-12-11 06:17

    add a header() function to redirect your page after download success

    header( "refresh:5;url=yourlocation.php" );
    

    Resource link(here)

提交回复
热议问题