<?php
      $myFile = "new.txt";
    $fileOpen = fopen($myFile, 'w') or die("can't open file");
    $stringData = "total;
    fwrite($fileOpen, $stringData);
    fclose($fileOpen);
      ?><html>
<head>
<script>
         var defaultValue = 5;
         var plus = 1;
         var max = 100;
         var total = defaultValue;
         
     window.setInterval(
     function () {
        
         if (total > max){
         
         total = defaultValue;
         }
        
         document.getElementById("demo1").innerHTML = total;
                        total = total + plus;
     }, 1000);
         
</script>
</head>
<body>
<p id="demo"></p>
<p id="demo1"></p>
<p id="demo2"></p>
</body>
</html>I need save the total value into txt file, and than read by txt. so that, when i refresh the browser will not re-looping, but how i get value from javascript or from div into php? (read and write per second)
 
     
    