Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

How can I auto reload html page based on the value assigned to the session?

if ($_SESSION["LoadPage"])
{
//Reload my html page
}

I know how to use <meta http-equiv="refresh" content="5" > but it cannot start auto refresh itself without someone to refresh

Please anyone can help me


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

You can use location.reload(); function of the javascript for this.

use string concatenation with script and php

 <?php
     if ($_SESSION["LoadPage"])
   {
 ?> 
      <script>
      location.reload();//Reload my html page
      </script>
  <?php
  }
 ?>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...