Limit count clicks?

Everything related to CCount PHP click counter
Post Reply
jgmatteu
Posts: 2
Joined: Sun Aug 14, 2016 4:03 pm

Limit count clicks?

Post by jgmatteu »

How to Include code to limit the amount of clicks,
something as an example:

if (unique clicks > = 5 ) {
echo ' page expired clicks ' ;
}

who can help me?
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: Limit count clicks?

Post by Klemen »

In count.php you can add something like

Code: Select all

if ($ccount_database[$id]['U'] > 5) {die('Link expired');}
just ABOVE line

Code: Select all

// Check for excluded IP
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
jgmatteu
Posts: 2
Joined: Sun Aug 14, 2016 4:03 pm

Re: Limit count clicks?

Post by jgmatteu »

Thank you so much
; D
success
Solved
hhasan
Posts: 2
Joined: Sat Nov 23, 2019 10:55 am

Re: Limit count clicks?

Post by hhasan »

Thanks. I solved.
Post Reply