PHP - auto refreshing page

后端 未结 8 1361
無奈伤痛
無奈伤痛 2020-12-07 17:52

I am using following code for a refreshing page, it is not reloading on completion. The following code is not working sometime.

 $page = $_SERVER[\'PHP_SELF         


        
相关标签:
8条回答
  • 2020-12-07 18:23

    you can use

    <meta http-equiv="refresh" content="10" > 
    

    just add it after the head tags

    where 10 is the time your page will refresh itself

    0 讨论(0)
  • 2020-12-07 18:35

    Maybe use this code,

    <meta http-equiv="refresh" content = "30" />
    

    take it be easy

    0 讨论(0)
提交回复
热议问题