简单的网页

时间:2014-07-11 03:36:32

标签: php html

我是html和PHP的新手,但我有一个相当简单的要求。我尝试了许多不同的方法,但都没有满足我的需求。

该页面应执行以下操作:

  1. 显示文件的一些文本,图片和日期时间戳 服务器(这适用于显示按钮。
  2. 如果用户点击了 按钮,执行修改服务器上的文件的php。 (这有效,但请参阅下面的问题)
  3. 每30秒刷新一次页面(显示更新服务器进程的效果 上面1中提到的图片和日期 - 时间戳。
  4. 以下是我目前正在g_test_02.php尝试的内容。问题是当我在浏览器中加载页面时,当它从标题刷新时,即使我没有点击按钮,它也会执行。我可以看到这个查看服务器上的文件。

    我做错了什么?

    由于

    <html>
    <body>
    <head>
    <META HTTP-EQUIV="REFRESH"
    CONTENT="30">
    </head>
    
    <?PHP
    Do some php to display the date-timestamp of a file on the Unix server
    ?>
    
    Display some html text and a picture
    
    <script>
    function myFunction() {
    <?php
    Do some php to modify files on the server
    ?>
            location.reload();
    }
    </script>
    
    <button onclick="myFunction()">Verify door</button>
    
    </body>
    </html>
    

1 个答案:

答案 0 :(得分:-1)

试试这个:

<html>
<body>

<script>
function myFunction() {
    setInterval(function(){alert("Hello")}, 5000);
}
</script>

<button onclick="myFunction()">Verify door</button>

</body>
</html>