I want to add a like button in my blog I did coding for it but how can I count likes of every person? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 9

I want to add a like button in my blog I did coding for it but how can I count likes of every person?

one person likes only one time without any account is this possible? if possible then how please mention all your words here sorry to take your golden time. sharing is caring.

19th Oct 2018, 1:55 PM
Ratnapal Shende
Ratnapal Shende - avatar
4 Answers
+ 8
how can do that 1st mehod Niush sitaula ?
19th Oct 2018, 2:25 PM
Ratnapal Shende
Ratnapal Shende - avatar
+ 4
It can be done but not full proof and secure. You can use different techniques like: 1. LocalStorage in Browsers to save like status. (security low) 2.Cookies to Store and verify from server (security medium) 3. Use the users IP address and record and check if already liked (security medium) 4. Use all 1,2 and 3 (security medium still) 5. Use login and verification (security high)
19th Oct 2018, 2:21 PM
Niush
Niush - avatar
+ 2
No without any account no person can like, so first made register all the account in the database and assign an unique id to that accounts whenever an account likes it will goes in the like table and counter is increased by 1 and so on
19th Oct 2018, 2:02 PM
MsJ
MsJ - avatar
+ 1
Search Google for JavaScript Local Storage.
19th Oct 2018, 4:27 PM
Niush
Niush - avatar