Display message before redirect to other page

后端 未结 7 1928
没有蜡笔的小新
没有蜡笔的小新 2020-11-28 07:21

I have a simple question but yet i don\'t know. I would like to display message first before redirect to other page, but my code just directly redirect the page without disp

相关标签:
7条回答
  • 2020-11-28 08:00

    You can use header refresh. It will wait for specified time before redirecting. You can display your message then.

    header( "refresh:5; url=login.php" ); //wait for 5 seconds before redirecting
    
    0 讨论(0)
提交回复
热议问题