可能重复:
PHP 脚本在 HTML 文件中不起作用
我有这个:
<?php
if(isset($_POST['submit'])){
$f = fopen('counter.txt', 'r+');
flock($f, LOCK_EX);
$total = (int) fread($f, max(1, filesize('counter.txt')));
if (isset($_POST['submit'])) {
rewind($f);
fwrite($f, ++$total);
}
fclose($f);
}
?>
它在 txt 文件中工作。它正确计算了点击次数。但是这个:
Times submited <?php echo $total; ?>.
在我有表单的 index.html 文件中不起作用。请问你能帮忙吗?
这是我的文件行:
- 表单(index.html)
- .php 文件
- header("位置:thankyou.php")
- 然后回到 index.html