我们正在开发网站。我们有按钮。在按钮操作中,我们放置了 PDF 文件下载。工作正常。但我们需要如何计算从我的网站下载我的 PDF 文件。
我们尝试过这样,但我们没有得到。
<?php
//$Down=$_GET['Down'];
$a="hello";
$i=0;
?>
<script type="text/javascript">
var i=0;
function submitForm()
{
<?php
$i = @file_get_contents('count.txt'); // read the hit count from file
echo $i; // display the hit count
$i++; // increment the hit count by 1
@file_put_contents('count.txt', $i); // store the new hit count
?>
}
</script>
<html>
<head>
</head>
<body>
<input type="button" onclick="submitForm()" value="submit 1" />
</body>
</html>
我们什么都没有。我们是新手,PHP
请指导我们。