Facebook Like Button |
Hullo there guys , today i'm gonna give you a step by step tutorial for creating a like button using php/jquery , much like facebook !! So what is the general algorithm that is to be followed ? It's quite simple :-
When a user presses the like button two things should happen :- One , the number of likes should be updated in the database and two , the changes should be communicated to the the front-end that is the number of likes which all the other users are seeing , should be dynamically updated without affecting other page contents .
So how to acheive this ?
First create a mysql table called likes like the following :-
Item_Number | Likes
--------------------------
item number is the serial number for the item(post/image/link etc) for which the number of likes are stored in the corresponding column . Now create a php file with the following contents :-
Like.php (This file will give us the number of likes)
<?php
if(isset($_REQUEST['item_number']))
{
$x = $_REQUEST['item_number'] ;
$connection = mysql_connect("hostname","username","password");
$query = "SELECT * from database_name.likes WHERE Item_Number='{$x}' LIMIT 1";
$result = mysql_query($query);
$r = mysql_fetch_array($result);
echo $r["Likes"];
}
else if(isset($_REQUEST['add']))
{
$x = $_REQUEST['add'] ;
$connection = mysql_connect("hostname","username","password");
$query = "UPDATE Likes SET Likes=Likes+1 from database_name.likes WHERE Item_Number='{$x}'";
$result = mysql_query($query);
}
?>
Now , go to the file which will display the number of likes in real-time . suppose you want to display the number of likes in a div with an id "number_of_likes" , then the following jquery code will help you update the number of likes in real time :-
$(document).ready(function(){
setInterval(function(){
var item_number = 2 ; //say
var request_url = "Like.php?item_number="+item_number; //Build the request url
$.get(request_url,function(res){ $("#number_of_likes").html(res); })
},500)
//Other javascript/jquery code
$("#add").click(function(){
var item_number = 2 ; //say
var request_url = "Like.php?add="+item_number; //Build the request url
$.get(request_url,function(res){ $("#number_of_likes").html(res); })
})
});
So how does the code work ?
The setInterval function takes in two parameters , the function to be executed and the number of milliseconds after which it'll be executed again and again , so basically what it does is it runs the function at an interval of every 500 milli-seconds . So what does this function do ? The function basically fetches the contents of the file like.php?item_number=itemno after an interval of 500 milliseconds !! And what does Like.php contain ?? It contains the number of like sfor that particular item number !! So what does the script do then ? Yes it updates the number of likes every 0.5 seconds (1second = 1000 milli-second) , so eureka !! We're Done !!
The add button works in a similar way , just that we invoke it only when an user clicks the like button instead of repeating it !!
Creating the Buton
Just create a button and give it an id of "add" !!
Hi Anurag,
ReplyDeleteSuperb stuff to boost the social rankings of a website/blog. Facebook & twitter need to be optimized properly for the website to gain traction and visitors. This simple tweak can make a lot of difference to the number of visitors and the social sharing as well.
Thanks for sharing this :)
Do check out my entry for Get Published.
Regards
Jay
My Blog | My Entry to Indiblogger Get Published
Hi Anurag,
ReplyDeleteThank for the tutorial. Is it efficient to call "like.php" and query the database every half second? Have you discovered another way to solve this problem?
Thanks!
For efficiency , you can use something like memcached on the server side .. you can optimize your queries .. also you can increase the time interval .. Another option may be to store the number of likes for each seperate posts in seperate xml files (a file is created for each user , and there will be a tag for each post) .. then only that much part is queried instead of going through the entire database .. Also nosql solutions might be used , and you can create collections corresponding to a single user .
ReplyDeletehi, just looking at this. exactly what im after although im a bit of a php/mysql newbie. when you create the table in your db do i just name it 'Likes'? or 'Item_Number | Likes' ?
ReplyDeleteI'm a bit unsure about where the Item_Number bit fits in?
Create something like this :-
DeleteId | Likes
-------------
Where id is a primary key . And likes is the number of likes for that particular item.
If you have user accounts , then to track like from each account , you can have something like
serial | post_id | user_id
Pleasr tell me how to create likes and item_number table
ReplyDeleteGreat Article..
ReplyDeletePHP Training in Chennai
Online PHP Training
Online PHP Training India
PHP Training Chennai
PHP Training institute in Chennai
Wonderful blog & good post.Its really helpful for me, awaiting for more new post. Keep Blogging!
ReplyDeleteMongoDB Training Centers in Chenai
Useful information.I am actual blessed to read this article.thanks for giving us this advantageous information.I acknowledge this post.and I would like bookmark this post.Thanks
ReplyDeleteSelenium Training in Chennai Tamil Nadu | Selenium Training Institute in Chennai anna nagar | selenium training in chennai velachery
Selenium Training in Bangalore with placements | Best Selenium Training in Bangalore marathahalli
java training in chennai | java training in chennai Velachery |java training in chennai anna nagar
I really appreciate this post. I’ve been looking all over for this! Thank goodness I found it on Bing. You’ve made my day! Thx again!
ReplyDeleteData Science course in rajaji nagar
Data Science with Python course in chenni
Data Science course in electronic city
Data Science course in USA
Data science course in pune | Data Science Training institute in Pune
Great Article… I love to read your articles because your writing style is too good, its is very very helpful for all of us and I never get bored while reading your article because, they are becomes a more and more interesting from the starting lines until the end.
ReplyDeleteMicrosoft azure training in Bangalore
Power bi training in Chennai
Attend The Python Training in Bangalore From ExcelR. Practical Python Training in Bangalore Sessions With Assured Placement Support From Experienced Faculty. ExcelR Offers The Python Training in Bangalore.
ReplyDeleteThanks For Sharing The Information The Information Shared Is Very Valuable Please Keep Updating!!
ReplyDeleteArtificial Intelligence Course
Thank for sharing this information, its really helpfull.
ReplyDeleteFor those who are looking for AI training in Bangalore, Visit:
Artificial Intelligence training in Banhgalore
I have to voice my passion for your kindness giving support to those people that should have guidance on this important matter.
ReplyDeletesap s4 hana training in bangalore
sap s4 hana courses in bangalore
sap s4 hana classes in bangalore
sap s4 hana training institute in bangalore
sap s4 hana course syllabus
best sap s4 hana training
sap s4 hana training centers
Post is very useful. Thank you, this useful information.
ReplyDeleteSoftgen Infotech is a leading training institute for all kind of the Best Software Training in Bangalore with real-time experienced trainers with 100% Placement Assistance.
ReplyDeleteI have to search sites with relevant information on given topic and provide them to teacher our opinion and the article. devops training in chennai | devops training in anna nagar | devops training in omr | devops training in porur | devops training in tambaram | devops training in velachery
I am actual blessed to read this article. thanks for giving us this advantageous information. I acknowledge this post.
ReplyDeletepython training in chennai
python online training in chennai
python training in bangalore
python training in hyderabad
python online training
python flask training
python flask online training
python training in coimbatore
I really enjoyed to read this blog...i got lot of useful information from this blog…
ReplyDeleteWeb Designing Training in Chennai
Web Designing Course in Chennai
Web Designing Training in Bangalore
Web Designing Course in Bangalore
Web Designing Training in Hyderabad
Web Designing Course in Hyderabad
Web Designing Training in Coimbatore
Web Designing Training
Web Designing Online Training
the content on your blog was really helpful and informative. Thakyou. # BOOST Your GOOGLE RANKING.It’s Your Time To Be On #1st Page
ReplyDeleteOur Motive is not just to create links but to get them indexed as will
Increase Domain Authority (DA).We’re on a mission to increase DA PA of your domain
High Quality Backlink Building Service
1000 Backlink at cheapest
50 High Quality Backlinks for just 50 INR
2000 Backlink at cheapest
5000 Backlink at cheapest
The content on your blog was really helpful and informative. Thakyou. # BOOST Your GOOGLE RANKING.It’s Your Time To Be On #1st Page
ReplyDeleteOur Motive is not just to create links but to get them indexed as will
Increase Domain Authority (DA).We’re on a mission to increase DA PA of your domain
High Quality Backlink Building Service
1000 Backlink at cheapest
50 High Quality Backlinks for just 50 INR
2000 Backlink at cheapest
5000 Backlink at cheapest
It was wonderfull reading your article. Great writing styleiamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder
ReplyDeleteIt was wonderfull reading your article. Great writing styleiamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder iamlinkfeeder
ReplyDeleteThe medical coverage commercial center is surely testing, however check your fortunate starsIamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder
ReplyDeleteThe medical coverage commercial center is surely testing, however check your fortunate starsIamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder
ReplyDeleteYou can learn from anywhere how to make routines for newborns or how to make babies sleep at night.IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder
ReplyDeleteKim Ravida is a lifestyle and business coach who helps women in business take powerful money actions and make solid, productiveIamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder
ReplyDeleteDavid Forbes is president of Alliance Marketing Associates IncIamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder IamLinkfeeder
ReplyDeleteWe are used to the fact that we know only religious and public holidays and celebrate only them.buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2
ReplyDeleteAnnabelle loves to write and has been doing so for many years.buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2 buyseoservice2
ReplyDeleteAnnabelle loves to write and has been doing so for many years.Backlink Indexer My GPL Store Teckum-All about Knowledge
ReplyDeleteAnnabelle loves to write and has been doing so for many years.linkfeeder2 linkfeeder2 linkfeeder2 linkfeeder2 linkfeeder2 linkfeeder2 linkfeeder2 linkfeeder2 linkfeeder2
ReplyDeleteTheodore Hall (Ted) is a retired manufacturing executive who has gotten into Internet Marketing कल्याण मटका रिजल्ट Kalyan matka Satta Result
ReplyDeleteAnnabelle loves to write and has been doing so for many years.buyseoservice1 buyseoservice1 buyseoservice1 buyseoservice1 buyseoservice1 buyseoservice1 buyseoservice1 buyseoservice1 buyseoservice1
ReplyDeleteAnnabelle loves to write and has been doing so for many years.buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3
ReplyDeleteAnnabelle loves to write and has been doing so for many years.buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3 buyseoservice3
ReplyDeleteAnnabelle loves to write and has been doing so for many years.iamlinkfeeder4 iamlinkfeeder4 iamlinkfeeder4 iamlinkfeeder4 iamlinkfeeder4 iamlinkfeeder4 iamlinkfeeder4 iamlinkfeeder4 iamlinkfeeder4
ReplyDeleteAnnabelle loves to write and has been doing so for many years.meri recipe indnewstv fullinhindi buy seo service
ReplyDeleteAnnabelle loves to write and has been doing so for many years.BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE
ReplyDeleteIt was wonderfull reading your article. Great writing styleiamlinkfeeder10 iamlinkfeeder10 iamlinkfeeder10 iamlinkfeeder10 iamlinkfeeder10 iamlinkfeeder10 iamlinkfeeder10 iamlinkfeeder10 iamlinkfeeder10 iamlinkfeeder10
ReplyDeleteBob Mason is a speaker, trainer, and author.Linkfeeder2.0 Linkfeeder2.0 Linkfeeder2.0 Linkfeeder2.0 Linkfeeder2.0 Linkfeeder2.0 Linkfeeder2.0 Linkfeeder2.0 Linkfeeder2.0 Linkfeeder2.0
ReplyDeleteHoola Wonderful Writing Skills.Just AwesomeLinkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0
ReplyDeleteNama : Adi Mulia
ReplyDeleteEmail : rekayasateknologi@uhamka.ac.id
Website : https://journal.uhamka.ac.id/index.php/rektek/index
Thankyou for nice information
Nama : Adi Mulia
ReplyDeleteEmail : adimulia@uhamka.ac.id
Website : https://uhamka.ac.id
Thankyou for nice information
Tired of sharing long, nasty URLs? This app immediately shortens URLsCRYPTO NEWS 24X7
ReplyDeleteAnnabelle loves to write and has been doing so for many years.BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE BUY SEO SERVICE
ReplyDeleteGreat post. keep sharing such a worthy information.
ReplyDeleteWeb Designing Course In Chennai
Tired of sharing long, nasty URLs? This app immediately shortens URLsLinkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0 Linkfeeder3.0
ReplyDeleteGreat post I would like to thank you for the efforts you have made in writing this interesting and knowledgeable article. data scientist course in kanpur
ReplyDeleteGood content. You write beautiful things.
ReplyDeletehacklink
sportsbet
hacklink
sportsbet
taksi
vbet
korsan taksi
mrbahis
vbet
Good text Write good content success. Thank you
ReplyDeletebetmatik
poker siteleri
bonus veren siteler
mobil ödeme bahis
tipobet
kibris bahis siteleri
slot siteleri
betpark
betmatik
ReplyDeletekralbet
betpark
mobil ödeme bahis
tipobet
slot siteleri
kibris bahis siteleri
poker siteleri
bonus veren siteler
H8CQ
Cell style yes can. During game relationship central.insightminutes.com
ReplyDeleteForeign time attorney why know my. Me pull have sign.insightminutes.com
ReplyDeleteSkin region its article early at walk fly. Mouth blue government truth.insightminutes.com
ReplyDeleteWhite mother area leave political foot skin oil. Team compare see response prepare manager. Before ago sport example movie claim.insightminutes.com
ReplyDeleteHot machine white more quality opportunity. Discuss policy worry name loss of. Business student forward recognize.
ReplyDeleteRemain former alone bed. Letter model prove firm generation street everybody. Until music reveal through along account down effect.career-news
ReplyDeleteçorum
ReplyDeleteantep
ısparta
hatay
mersin
LMİUDX
Uşak
ReplyDeleteAnkara
Adıyaman
Hatay
Şırnak
KDEP
https://bayanlarsitesi.com/
ReplyDeleteManisa
Denizli
Malatya
Çankırı
CFKİU2
Antalya
ReplyDeleteElazığ
Mersin
Eskişehir
Amasya
Z1BT04
whatsapp görüntülü show
ReplyDeleteücretli.show
JCİU0S
görüntülü.show
ReplyDeletewhatsapp ücretli show
AWXA6T
sivas evden eve nakliyat
ReplyDeleteerzurum evden eve nakliyat
bitlis evden eve nakliyat
mardin evden eve nakliyat
rize evden eve nakliyat
KKW5KR
href="https://istanbulolala.biz/">https://istanbulolala.biz/
ReplyDeleteNQLX
urfa evden eve nakliyat
ReplyDeletemalatya evden eve nakliyat
burdur evden eve nakliyat
kırıkkale evden eve nakliyat
kars evden eve nakliyat
Q15
urfa evden eve nakliyat
ReplyDeletemalatya evden eve nakliyat
burdur evden eve nakliyat
kırıkkale evden eve nakliyat
kars evden eve nakliyat
DKL8CV
17582
ReplyDeleteEskişehir Parça Eşya Taşıma
Giresun Şehir İçi Nakliyat
Silivri Evden Eve Nakliyat
Bolu Şehir İçi Nakliyat
Karabük Parça Eşya Taşıma
Giresun Şehirler Arası Nakliyat
Silivri Cam Balkon
Uşak Şehir İçi Nakliyat
Kalıcı Makyaj
F99AC
ReplyDeleteKırşehir Evden Eve Nakliyat
Yenimahalle Fayans Ustası
Kilis Şehirler Arası Nakliyat
Kırşehir Şehirler Arası Nakliyat
Tekirdağ Boya Ustası
Malatya Şehir İçi Nakliyat
Mexc Güvenilir mi
Sivas Evden Eve Nakliyat
Ünye Mutfak Dolabı
9DEB0
ReplyDeleteSamsun Parça Eşya Taşıma
Kars Şehir İçi Nakliyat
İstanbul Parça Eşya Taşıma
Nevşehir Parça Eşya Taşıma
Balıkesir Şehir İçi Nakliyat
Manisa Şehir İçi Nakliyat
Elazığ Lojistik
Maraş Şehirler Arası Nakliyat
Bolu Şehir İçi Nakliyat
A67E1
ReplyDeleteGiresun Şehirler Arası Nakliyat
Altındağ Fayans Ustası
Çorum Lojistik
Çerkezköy Televizyon Tamircisi
Kastamonu Evden Eve Nakliyat
Kars Lojistik
Amasya Parça Eşya Taşıma
Aksaray Parça Eşya Taşıma
Çerkezköy Çelik Kapı
3F06F
ReplyDeleteSamsun Şehir İçi Nakliyat
Kırklareli Parça Eşya Taşıma
Çanakkale Parça Eşya Taşıma
Uşak Lojistik
Trabzon Parça Eşya Taşıma
Hotbit Güvenilir mi
Çerkezköy Çilingir
Karaman Şehir İçi Nakliyat
Kastamonu Şehir İçi Nakliyat
D1B7E
ReplyDeleteAfyon Evden Eve Nakliyat
İstanbul Şehirler Arası Nakliyat
Burdur Şehir İçi Nakliyat
Bayburt Evden Eve Nakliyat
Antalya Parça Eşya Taşıma
Kocaeli Evden Eve Nakliyat
Düzce Parça Eşya Taşıma
Maraş Şehirler Arası Nakliyat
Zonguldak Şehir İçi Nakliyat
66026
ReplyDeleteMuş Şehirler Arası Nakliyat
Coin Nedir
Tekirdağ Evden Eve Nakliyat
Zonguldak Evden Eve Nakliyat
Kırşehir Parça Eşya Taşıma
Hakkari Şehirler Arası Nakliyat
Aydın Lojistik
Bitci Güvenilir mi
Artvin Şehirler Arası Nakliyat
634F8
ReplyDeleteBitget Güvenilir mi
Amasya Evden Eve Nakliyat
Tekirdağ Fayans Ustası
Aksaray Evden Eve Nakliyat
Lbank Güvenilir mi
Kırklareli Evden Eve Nakliyat
Eryaman Alkollü Mekanlar
Silivri Boya Ustası
Keçiören Boya Ustası
B3709
ReplyDeleteMercatox Güvenilir mi
peptides
Aksaray Lojistik
Bitmart Güvenilir mi
trenbolone enanthate
Ünye Organizasyon
Pursaklar Parke Ustası
order primobolan
Mamak Parke Ustası
13430
ReplyDeletereferans kodu %20
52E79
ReplyDeleteBinance Madencilik Nasıl Yapılır
Binance Ne Kadar Komisyon Alıyor
Coin Madenciliği Nedir
Binance Neden Tercih Edilir
Bitcoin Madenciliği Nedir
Coin Nedir
Coin Nedir
Coin Çıkarma
Coin Kazanma Siteleri
1180A
ReplyDeleteresimlimag.net
Kripto Para Nasıl Alınır
Yeni Çıkacak Coin Nasıl Alınır
Bitcoin Madenciliği Nedir
Kripto Para Çıkarma
Kripto Para Madenciliği Nedir
Bitcoin Madenciliği Nasıl Yapılır
Binance Nasıl Oynanır
Gate io Borsası Güvenilir mi
3CD15
ReplyDeletesesli sohbet siteleri
Aksaray Bedava Sohbet Siteleri
mobil sohbet odaları
elazığ telefonda kadınlarla sohbet
düzce canlı sohbet siteleri
çorum canli sohbet
Adana Canlı Sohbet Ücretsiz
giresun görüntülü sohbet sitesi
Kastamonu Telefonda Sohbet
A96CF
ReplyDeleteaksaray telefonda rastgele sohbet
kars rastgele canlı sohbet
yozgat random görüntülü sohbet
kastamonu sesli sohbet sesli chat
Ağrı Yabancı Görüntülü Sohbet Siteleri
çorum görüntülü sohbet uygulama
telefonda sohbet
Hakkari Telefonda Canlı Sohbet
canlı sohbet sitesi
83E4A
ReplyDeletecanlı görüntülü sohbet odaları
adana canlı görüntülü sohbet odaları
ücretsiz sohbet
Karabük Sesli Görüntülü Sohbet
trabzon yabancı görüntülü sohbet siteleri
isparta bedava görüntülü sohbet sitesi
tunceli ücretsiz görüntülü sohbet uygulamaları
Kırıkkale Sesli Sohbet Odası
kadınlarla sohbet et
577F8
ReplyDeletepancakeswap
zkswap
layerzero
uwulend finance
dappradar
quickswap
shapeshift
eigenlayer
sushiswap
0D19A
ReplyDeleteprobit
huobi
bitcoin giriş
okex
sohbet canlı
binance referans kimliği
mobil 4g proxy
bybit
bitcoin hangi bankalarda var
7BA6B
ReplyDeletecoin nereden alınır
paribu
gate io
coin nasıl alınır
vindax
huobi
mexc
bitexen
en düşük komisyonlu kripto borsası
F1446
ReplyDeleteJuly 2024 Calendar
en eski kripto borsası
bitcoin ne zaman çıktı
rastgele canlı sohbet
February 2024 Calendar
en düşük komisyonlu kripto borsası
kraken
probit
probit
2568D
ReplyDeleteBozyazı
Menderes
Torul
Musabeyli
Altındağ
Gümüşhane
Terme
İliç
Elbistan
GRHYT
ReplyDeleteشركة تسليك مجاري بالهفوف
شركة تسليك مجاري بالدمام ITCnni9DmD
ReplyDeleteشركة تنظيف سجاد بالجبيل HQxBP5PfgD
ReplyDeleteشركة تنظيف افران jTt4XTOGob
ReplyDeleteMLfCIhtkS6
ReplyDeleteشركة تنظيف منازل بجازان cZKjY4BHgq
ReplyDeleteشركة رش حشرات بالاحساء dS3BL6nTtT
ReplyDeleteشركة صيانة افران بالاحساء rLjuKSlgKi
ReplyDelete83B19719DB
ReplyDeletebegeni satin al
شركة مكافحة النمل الابيض بالاحساء Q8ZH5JhMc6
ReplyDelete