<!DOCTYPE html>
<html>
   <head>
   </head>
    <body>

    <?php
        $myfile = fopen("gpcount.txt", "r+") or die("Unable to open file!");
        $count = fread($myfile, filesize("gpcount.txt"));
        $count++;
        fclose($myfile);
        $myfile = fopen("gpcount.txt", "w+") or die("Unable to open file!");
        fwrite($myfile, $count);
        fclose($myfile);
    ?>
   
    <script>
        window.open('https://play.google.com/store/apps/details?id=com.islamoncloa.elSecretoDeIslaMoncloa', '_self');
    </script>
   
    </body>
</html>