Hi, displaying number of clicks works fine and all that. But I'm trying to find a solution to add the sum of clicks of one id with the sum of clicks of an other id and then display the total.
Basically if id 1 has 10 clicks and id 2 has 5 clicks I want to display 15 (id1+id2) as the total.
Is this possible?
I've tried different solutions in the manners of:
<script language="Javascript">ccount_display('1')+('2')</script>
But that was obviously too simple

Thanks in advance!