Hi!
I'm trying to make a link that looks like this:
Aftonbladet.se [2 klicks]
and ofc I want the number of klicks to update as soon as anyone klicks the link. my code so far is:
<a href="http://www.aftonbladet.se">Aftonbladet.se
[
<?php
$klick = "0";
$klicka = "1";
$tklick = $klick + $klick2;
echo $tklick;
?>
klick]
</a>
My problem is how do I get the browser to understand that it's suppose to add +1 every time someone klicks the link?