的點擊次數我要算一個鏈接的點擊次數和發佈的點擊次數。我使用下面的代碼,但它顯示計數爲0。我無法確定它在哪裏的錯誤。然而,我可以猜測,「點擊」沒有正確實施..請親切地幫助我。PHP顯示一個鏈接
<?php
if(isset($_POST['clicks'])) {
incrementClickCount();
}
function getClickCount()
{
return (int)file_get_contents("clickcount.txt");
}
function incrementClickCount()
{
$count = getClickCount() + 1;
file_put_contents("clickcount.txt", $count);
}
?>
<html>
<head>
<title>Click Count</title>
</head>
<body>
<a href="http://www.google.com" name="clicks">Google</a>
</ br>
</ br>
<div>Click Count: <?php echo getClickCount(); ?></div>
</body>
</html>
是什麼... O O 6-8 –
如果可能的話,用數據庫做這件事可能會好很多。 – ShoeLace1291
@samankhademi我不明白你想說什麼? –