Hi Guys, Today I am going to share my facebook timeline wall script version 2.0 with more interesting features. I have added live commenting system with smileys option. I had received lots of request from my visitors to update the existing facebook wallscript version 1. So today I am very glad to share this wonderful code to all.
I had published facebook style dynamic ย timeline wall script version 1.0 previously – check it out
Contents
Features
1. Upload pictures
2. Share updates
3. Share youtube videos
4. Delete post
5. Facebook timeline design
6. Live commenting system
7. Smiley support using PHP
8. Delete comment
9. Infinite scroll – Auto load more
Database Design for Facebook Timeline Wall Script Version 2.0
Database design for Facebook wall script version 2.0. Contains two tables – Posts & Comments
Facebook Timeline Wall Script – Version 2.0 contains 4 folders
- assets
- Stylesheets
- Javascripts
- Images
- Smileys – contains smiley icons
- Includes
- config.php
- security.php
- SimpleImage.php – used to upload images
- Smileys – Used to parse smileys
- Uploads – all pictures are uploaded to this folder
All you have to do is simply download and upload the sql file. finally some minor changes to be done in config.php
Config.php
define('DB_SERVER', 'localhost');
define('DB_USERNAME', 'root');
define('DB_PASSWORD', '');
define('DB_DATABASE', 'fb_wall');
define('ImageUploadPath', 'uploads/');
$post_limit = 10; // set number of records to load by default
$connection = mysql_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD) or die(mysql_error());
$database = mysql_select_db(DB_DATABASE) or die(mysql_error());
mysql_query ("set character_set_results='utf8'");
$base_url='http://localhost/facebook-timeline-part-2/'; // with trailing slash
$base_folder = "facebook-timeline-part-2/"; //leave empty if you using root folder
$smiley_folder = $base_url.'assets/smileys/'; // your smiley icons folder
Smileys.php
Here is the code to parse smiley inside the content.
function get_smiley_array()
{
$smileys = array(
// smiley image name width height alt
':)' => array('grin.gif', '19', '19', 'grin'),
':-)' => array('grin.gif', '19', '19', 'laugh'),
':lol:' => array('lol.gif', '19', '19', 'LOL'),
':cheese:' => array('cheese.gif', '19', '19', 'cheese'),
':)' => array('smile.gif', '19', '19', 'smile'),
';-)' => array('wink.gif', '19', '19', 'wink'),
';)' => array('wink.gif', '19', '19', 'wink'),
':smirk:' => array('smirk.gif', '19', '19', 'smirk'),
':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'),
':-S' => array('confused.gif', '19', '19', 'confused'),
':wow:' => array('surprise.gif', '19', '19', 'surprised'),
':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'),
':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'),
'%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'),
';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'),
':P' => array('rasberry.gif', '19', '19', 'rasberry'),
':blank:' => array('blank.gif', '19', '19', 'blank stare'),
':long:' => array('longface.gif', '19', '19', 'long face'),
':ohh:' => array('ohh.gif', '19', '19', 'ohh'),
':grrr:' => array('grrr.gif', '19', '19', 'grrr'),
':gulp:' => array('gulp.gif', '19', '19', 'gulp'),
'8-/' => array('ohoh.gif', '19', '19', 'oh oh'),
':down:' => array('downer.gif', '19', '19', 'downer'),
':red:' => array('embarrassed.gif', '19', '19', 'red face'),
':sick:' => array('sick.gif', '19', '19', 'sick'),
':shut:' => array('shuteye.gif', '19', '19', 'shut eye'),
':-/' => array('hmm.gif', '19', '19', 'hmmm'),
'>:(' => array('mad.gif', '19', '19', 'mad'),
':mad:' => array('mad.gif', '19', '19', 'mad'),
'>:-(' => array('angry.gif', '19', '19', 'angry'),
':angry:' => array('angry.gif', '19', '19', 'angry'),
':zip:' => array('zip.gif', '19', '19', 'zipper'),
':kiss:' => array('kiss.gif', '19', '19', 'kiss'),
':ahhh:' => array('shock.gif', '19', '19', 'shock'),
':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'),
':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'),
':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'),
':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'),
':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'),
':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'),
':vampire:' => array('vampire.gif', '19', '19', 'vampire'),
':snake:' => array('snake.gif', '19', '19', 'snake'),
':exclaim:' => array('exclaim.gif', '19', '19', 'excaim'),
':question:' => array('question.gif', '19', '19', 'question') // no comma after last item
);
return $smileys;
}
function parse_smileys($str = '', $image_url = '', $smileys = NULL)
{
if ($image_url == '')
{
return $str;
}
if ( ! is_array($smileys))
{
if (FALSE === ($smileys = get_smiley_array()))
{
return $str;
}
}
// Add a trailing slash to the file path if needed
$image_url = preg_replace("/(.+?)\/*$/", "\\1/", $image_url);
foreach ($smileys as $key => $val)
{
$str = str_replace($key, "<img style="0border: 0;" alt="\"".$smileys[$key][3]."\"" src="\"".$image_url.$smileys[$key][0]."\"" width="\"".$smileys[$key][1]."\"" height="\"".$smileys[$key][2]."\"" />", $str);
}
return $str;
}
//usage
echo parse_smileys($message, $smiley_folder);
Please donโt forget to share and subscribe to latest updates of the blog. Also any comments and feedback are all welcome!
Thanks!
View Live DemoSubscribe to my blog & get more updates on Facebook timeline wall script ๐
unable to download after subscription..
hamidashhad55@gmail.com my email
I subscribed with you but am unable to download the script. Error: Email does not exist in our database. Please use below form to subscribe
Here is my mail tunex012@gmail.com
I subscribed but could not download.. please email me this version at seyitaktan93@gmail.com thanks ๐
I just want to learn only..to understand the architeture of the Facebook.Please send me the script at zackboy999@gmail.com or version facebook timeline wall script 1.0
Hello! I would like a download but I am unable to even though I have subscribed since more than 10 hours ago. Please help me as I am just learning coding and would like to expand my knowledge. Thank you. my email is bah-howtroublesome@hotmail.com
hi https://uploads.disquscdn.com/images/01da080aae719613fa8816627817cfd8cbc67ed47e7f7f15532a759227bb1ece.png
please give access, i already registered. email:- vikas07dhoni@gmail.com
hello impossible to download script? I subscryb to news later but not work ?
Enter your email :
michael10fr@gmail.com
Download
Email does not exist in our database. Please use below form to subscribe
same
same
hi
Hi, I’ve already subscribed, but download error “Email does not exist in our database. Please use below form to subscribe”
Awesome post btw.
Cheers!
More than 10hours have passed since I subscribed, I still cant download the file.
Does someone have a clean copy of this script? Please send it t my mail. I would greatly appreciate it.
email: ikoymaster@gmail.com
Thanks!
Please – I have registered and still no access. Same happened with another site using feedburner. That’s a crazy system, and this will cause people to lose interest and go else where – a drop-off. Please, provide the code, else get rid of this page. It’s just frustrating! 10 hours!?
Hi Anthony,
i’m extremely sorry. Feedburner data is not updated properly. that is why delay.
Please download the script now
Thanks
Am having the same problem. I subscribed but am unable to download the script. Error: Email does not exist in our database. Please use below form to subscribe
if u really intend to distribute your code then do it because after registering to your site , I am not getting the download. I am seeing in the comment section that many people are facing the same issue. So stop this registration crap if u are not willing to share the code.
Hi Ritesh,
Please download the code now. Sorry for being late
Thanks
thanks for the help. downloaded the code.
regards.
agreed!
Hello, I have subscribed to your channel but still can’t download the project, Please send me the project at v0vin0vinni@gmil.com
hello
can you please send the project to this email tamer_enjadat@live.com .
Regards
hello I subscribed but cant download it. please send to arthurngoussong@gmail.com
I subscribed but can not download it. Please send this project to adamomarinho@gmail.com
Please update your Subscribers List, So I can download it.
I love your script.
Bro i just want learn the sctruture of this function only.my email,matchartproduction@gmail.com ..Your resourse is well appreciated
thx for all your script please can i have the update in my gmail ?? please :
tuayoborel77@gmail.com
where is download link ?
Hi! i like your post and subcribed, thanks.
i subscribed but can not download it.. pls send this project to fffbhs@gmail.com
Please update your database so that I can download it.. thanks ๐
Please update your database so that I can download it.. thanks ๐
I subscribed but could not download.. please email me this version at shubhamjha1000@gmail.com.. thanks ๐
update database please …. :/
i would love to download this script!, please update your database so i get access ๐
Can you Please update your db so I can download
How can i download this project !
Hello
I was unable to download to download the Facebook Timeline Wall Script 2.0 with PHP, Mysql, jQuery after the link was sent to my email. Whe i click the link, the following message appear in dropbox We’re sorry, but we can’t preview this file.zip
And i can’t download the file to give it a test before paying for Facebook Timeline Wall Script 5.0 with PHP, Mysql, jQuery
Hi Goerge,
You need to download the file instead of preview..
Will send you the file separately to your email ID now..
Thanks
Hello
I am still unable to download the file
I still see the same message when i enter my email and click download, then follow the link on the Subscribers database” We’re sorry, but we can’t preview .zip.file.” Because of this message the download isn’t going through
Hi George..
I have sent the file to your email.. Please check
Thanks
please, update it .. or send my that file too.
thanks
please send me the file my email id is harshu.k.hk93@gmail.com
Please update your db so I can download
hii…i didn’t able to download this script and even after 48hrs ….thanku
Hello Please update the database i cant download the script even after 24hrs
Greetings
Please update your db ,I have subscribed, but could not download the script. Thanks for your help
Please, updated your database. Thanks – macwilcy@gmail.com. I have subscribed for days now but could not download the script. Thanks for your help
Awesome,,, very good bro. Please update your db ๐
Splendid job ! does it support groups ?
Hello Please update the database i cant download the script even after 24hrs
Greetings
Hi peter,
Subscribers database has been updated.. Please download it again..
Thanks
do you work on private projects as well…
Hi Nicksyna,
Yes.. Please send your requirements to my email – itzurkarthi@gmil.com
Thanks
hey karthik,
i have mailed you my requirements please have a look at it…..
same here. please update your db.
same here. please update your db.
Hi. I really appreciate your work. It’s an awesome work. I also subscribed but can’t be able to download it.
Hi. I really appreciate your work. It’s an awesome work. I also subscribed but can’t be able to download it.
Can you post readable .doc files
if not how can you add that ?
Can you post readable .doc files
if not how can you add that ?
stupid fellow, it’s not working. U r doing this cheat publicity only for ur subscriptions ๐
*cheap
hi sir please update the db…need the code very urgently…Thanks…!!
hi please update your database, i m nt able to download script.
i need this script urgently
Hi brother, can you please update your subscription list so that I can download the wallscript 2 from your site? Thanks
Karthikeyan Thank you for this free download. Mine is not working properly. The page does not update the feed unless I refresh the page for every new post. The photo upload will select a photos but does not upload a photo to the uploads folder nor to the database. The video will post but only if I refresh the page with a post in the box. The db connects and updates the post but not the index.php page without refreshing the page. Any help to make it all work would be greatly appreciated. Thanks again.
Hello Karthikeyan you have problem in you’r back end database code Pls correct you database connection
I register my email but when I try to download it says the email does not exist. Can you help me?
fsfsd
aaaaaaaa
thank you for this great work . i really want to use it in my project , can you please update your DB ๐ pls pls pls
This script . I can not upload image. Please tell me Jumyut@yahoo.com. thk.
Please update the database, I subscribed but still cant download….
Hi Karthik, can u please update the database, i subscribed but still cant download.
Hi Karthik, I really like your technology, especially the timeline posting mechanism. I would also appreciate it if you could update your database so I can download some of your scripts. Thanks.
Dear Azmat,
Subscribers DB has been updated.. Please download it now
Thanks
Thanks man! Really appreciate it.
Looking forward to you updating the database again. Thanks for the good work, will certainly be a long-term member.
Please update the database!
Hi Karthik !
Pls help me, I copy content from a website but error fonts , Please help me.
Album Thรยฐรยกng Nhaยปโบ – Ngaยปยc Sรยกn
1 TAยฌnh Nhaยปย Mau QuAยชn – Ngaยปยc Sรยกn 00:00
2 Vaยปย Laยบยกi Aยaยปโi Sim – Ngaยปยc Sรยกn; Yaยบยฟn Khoa 05:08
Can you update the database please? I subscribed hours ago and still cannot download.
10 hours has passed and I still get the error of not subscribed. can you
please update the database. thanks for the great work. please send me
email this script download…locpv.dev@gmail.com, thanks
” Email does not exist in our database. Please use below form to subscribe ”
Did you ever update your database ,or it’s just kind of scam ????
cause two days ago subscribed and till now can’t download the Script yet.???
photos i can not able to upload … solution please ?
Aaa
photos i can’t upload ….. what to do for that ?
please update the database
can you update the database please?
please update the database i subscribed more than 24 hours ago…
Karthik Will you develop a code that show the fb user post after login into my website through login plugin of fb
Hy!
I have a problem with character encoding, like:
รฉ,รก,ลฑ,รบ etc.
And when I post a comment, he text comes in one line
Can you update the database please? I subscribed 21 hours ago and still cannot download.
Hi..
Please download it now.. I have updated the database..
Sorry for being late
Thanks
I subscribed to blog and I cant download the script. I am looking forward to trying this on my site!
“email address does not exist” even after I had added my email address more than 10 hours.
can you just send it to my email? please. thanks
Please download it now.. database has been updated
The download does not work. We register our email but when we try to download it says the email does not exist. Is the download a scam in other words is it a way to collect our email address ??
otherwise
subscription list is not maintaining well so that we are getting “email address does not exist” message.. Please check it out.. its more than a 10 hrs i got subscription..
This is what I call :”Well-made”, thanks to you I’m able to build my project and learn more about php, mysql and DB structure, thank for you whole effort on it.
Hello Karthikeyan..
Can i modify your code as per my requirement & use it for commercial purpose??
Yes anik.. ๐
Thanx alot…n thanx for doing such great job….. ๐
i subscribed but it didn’t download …
ะะฐะบ ะตะณะพ ัะบะฐัะฐัั, ะฒัะพะดะต email ะทะฐัะตะณะธัััะธัะพะฒะฐะป ะธ ะฟัะพัะปะพ ัะถะต 10 ัะฐัะพะฒ, ะฝะพ ะฝะต ะธะดัั
the download not working even we registered our email.
The download does not work. We register our email but when we try to download it says the email does not exist. Is the download a scam in other to collect our email adress ?
Hi kressly,
Subscribers list has been updated.. sorry for being late..
Thanks
Oh sorry. And thanks a lot. I have downloaded it
Oh sorry. And thanks a lot. I have downloaded it
Hi Karthik. Can you update the subscriber list i am not able to download. Thanks a lot………..
shibu.kmr@gmail.com
Hi Karthik. Can you update the subscriber list i am not able to download. Thanks a lot………..
shibu.kmr@gmail.com
Where is the download link or the code of the form
Hi Elkassem,
I have sent you the script to your email
Thanks
Hi Karthik. Can you update the subscriber list i am not able to download. Thanks a lot.
hii Mr.Karthikeyan, hey please give me the code it is very important to me and wonderful work
10 hours has passed and I still get the error of not subscribed. can you please update the database. thanks for the great work. please send me email this script download…mandaliskiran@gmail.com
HI Kiran,
Sorry for being late. Email list has been updated… please download it from here http://w3lessons.info/demo/facebook-timeline-demo-2
hello, can u plz give me the code for this,please update your email database so i can download the script
hello, can u plz update my email so i can download script, looks great, best regards ๐
Hello sir,
Please update your email database so i can download the script.
Really it wonderfull work you did.
Hi Karthik. Can you update the subscriber list i am not able to download. Thanks a lot.
Hi Mr.Karthikeyan,
Please update the database or email me at amir7sh@yahoo.com. thx a lot
Hi Karthik. Can you update the subscriber list since i am not able to download. Thanks
can i use this for my site?
Hi Karthik, i ccan’t down load can u pls update the database?
Hi Karthik,
Subscribers list has been updated.. please download it from here – http://w3lessons.info/demo/facebook-timeline-demo-2
Thanks
downloaded.thx a lot.
Hi Mr.Karthikeyan,
Please update the database or email me at rishabmehra10@gmail.com.
Hi Mr.Karthikeyan,
Please update the database or email me at hariharan.sulur@gmail.com.
Thanks a lot. Have a Good Day.
hi ,, Mr. Karthikeyan
please update the database. or email me.. (tharindu12@gmail.com)
thank you very much.. have a nice day!
Hey, coumd you update the database please ? ๐
thank for the nice job ๐
Hi Karatika,
I have updated the database… please see the wallscript version 4.0 at http://wall.w3lessons.info
Thanks
Ok, i am interested by all your scripts ๐
Hi Karthikeyan,
Could you help updating the database?
Thanks,
10 hours has passed and I still get the error of not subscribed. can you please update the database. thanks for the great work
i already subscribed but i cannot get the script from download link
Email does not exist in our database. Please use below form to subscribe
Hi Karthikeyan could you please update your database coz i subscribed yesterday. Thanks for your awesome work and i appreciate and am dying to have this script.
Hello, i subscribe but i can’t get the script. I get this message: Email does not exist in our database. Please use below form to subscribe.
Hi Karthikeyan,
Could you help updating the database?
i can’t wait 10 hour ;-(
Thanks,
Hi Solip.
List has been updated… Download it from here – http://w3lessons.info/demo/facebook-timeline-demo-2
Thanks
i already subscribed but i cannot get the script from download link
Hi Mark Menodiado
Subscribers List has been updated.. please download it from here – http://w3lessons.info/demo/facebook-timeline-demo-2
Thanks
thanks for this.. ^^ its great.. ^^
Is there a good and an easy way to jump to points on this timeline, like Facebook did with the dates and the scrolling?
Ys.. its possible
Hi Karthikeyan,
Your script is awesome. I would like to try it out for my project.
Thanks,
Thank you CEDA ๐
Hi Karthikeyan,
I have subscribed to your list but still unable to download the script v.2.0.
Could you help updating the database?
Thanks,
Dear CEDA,
Subscribers DB has been updated.. now you can download it from here – http://w3lessons.info/demo/facebook-timeline-demo-2
Thanks
Thanks Karthikeyan, I can load it now ๐
Please send me, i can’t wait 10 hour….
Dear Neocsatornaja,
Please download it from here – http://w3lessons.info/demo/facebook-timeline-demo-2
Thanks
I can’t!
Email does not exist in our database. Please use below form to subscribe
I duble check my email and this correct.
Hi, Your work is so amazing. Will now be able to make a good web because of you. hehehe.
Is this for free? Can I download the project ? T_T
Hi Jay,
Thank you very much.. yes, this script is free.. you can download it from demo page..
thanks
Very good
nice script , it showcases real brains put to work
Thank you Muhairwa Jean
Hi Karthikeyan, this script is great. Can I use it on my web business ? Thanks
Yes sfantu. You can use this script for your business.. ๐
Hello, i subscribe but i can’t get the script. I get this message: Email does not exist in our database. Please use below form to subscribe.
hi jcabanillas
Subscribers database has been updated…
Use this link to download – http://w3lessons.info/demo/facebook-timeline-wallscript-v3/
Thanks
Karthikeyan k
Excellent job!! thanks.
hello, i subscribe and i can;t get the script..
Email does not exist in our database. Please use below form to subscribe
Hi Kreshna Budi,
I just now checked your email in my subscriber database. Your email does not exists..
Any way I have sent you an email with download script
Thanks
Hi , i suscribe but i can’t get the script! please send to me!
Hi Nacho,
Subscribers database has been updated…
Use this link to download – http://w3lessons.info/demo/facebook-timeline-demo-2
Thanks
Karthikeyan k
I was unable to get the script. i have already subscribed , but each time I tried to get this script, the error “Email does not exist in our database. Please use below form to subscribe”
It’s a very worth script to get! Thanks
please sent me this script~~~I want to use on my website. Its so nice for me!! I’ve already subscribe your blog^^
please, need it script please. send to mail. soniderot@hotmail.com
Hi
Use this link to download – http://w3lessons.info/demo/facebook-timeline-demo-2
Thanks
thank friend :3 i am using you codes :3 you upload more please, DEMO UN USER 1 WALL TIMELINE http://laticat.x10.mx/?st=home, Tomorrow upload emotions :3, thanks u friend :3
Hi. I would like to integrate this script to my site. It is really great. I already have subscribed but not sure how to get the script.
Hi Dirival,
Check your email now ๐ Keep in touch for version 3 with more features
Thanks
Nice Thanks. You have done a great job!!! Fantastic! Any estimate on when version 3 will be released?
Hi Dirival,
Facebook Timeline Wall Script Version 3 is almost ready ๐ It will be available in another 2 – 3 days ๐
Features
1. all features in version 2.0
2. Facebook like Where are you? ( location sharing )
3. Facebook Login System ( OAuth )
4. Facebook like Who are you with ( I am with $$ friends now )
5. Facebook like Exact Timeline Design ( including profile pic + cover page )
6. Facebook like Lightbox Image Viewer
Keep in touch.. Thanks!
Wow that would be great! I have one question. Is there anyway that we can have the post all highligted instead of having left and right?
Hi..
Yes you can…
Please do like this
Thanks
Hi Thanks for quick reply. I edited the post_update.php same as you mentioned and it works. but when I refresh the page it goes back to left and right.
this is what I have
$lft = array(‘highlight’ => ‘0’); ?>
You have to change that in index.php also..
Hi..
Yes you can…
Please add class Highlight instead of left & right
Thanks
Wow that would be great! I have one question. Is there anyway that we can have the posts all shown highlighted instead of having left and right?
Hi Dirival,
Check your email now ๐ Keep in touch for version 3 with more features
Thanks
I like your programming source code, because its more simple, and actually you give some comment for us to understand your code. =)
can i integrate this script with existing member database?
and howwwwww?
Hi Patrick,
Send me your DB structure to my email.. so that I will let u know how to integrate it with this script..
Thanks
Karthikeyan
I like your programming source code, because its more simple, and actually you give some comment for us to understand your code. =)
Hi Christian,
Thanks for your feedback.
Tell me what kind of information do u want?
Thanks
Hi Patrick,
Send me your DB structure to my email.. so that I will let u know how to integrate it with this script..
Thanks
Karthikeyan
please send new script i create my facebook clone and necesarry the script icons please sare to my email
thank’s , very nice script,
you can pass the wall facebook adding some options:
– Display an information framework for the mouse pass over the names of friends
– Ability to make a tag on the image, with display of an information frame with
– Colored part of a comment in green with the most number of I like
– Slider in the main header wall
And more element other trick ^ _ ^ …
gooooood!! awsome
Hi, I need this script. Thanks
where i can download
Please send me the script. I like all about php, jquery, etc., and facebook style apps. Thanks! (sorry for my english, i’m from argentina). Regards.
Your script is very good compared to other facebook wall script.
We expect the next version to be more like facebook ๐
I want to learn more jquery and php by looking at the downloadable code of this. Thank you
Are you gonna mail this out to people soon? cant wait to get my hands on it!
Check your email ๐
Very very nice update to the first version. Only thing i cant figure out is that deletes are not working?
please send for me…
nyce 1 ๐
wow cool script i like it verry verry much good jobs
Thanks for this. It looks great. Pardon my ignorance though – where do you use this exactly – on our websites or on Facebook itself? I assume it must be on our websites – yes?
And yes, like all the others – not sure where to download? I have been a subscriber to your site for some time and always look forward to your posts.
Thanks again…
i subscribe, how download it? And I would like Facebook timeline wall script v3.0, where is download links or how download it?
Very nice update from the first one. When you get time could you please email it to me , thanks
where i can download
its too cool.Ure great.Please send me the download link
cool.. where i can download the sourcecode
Hi Karthikeyan K,
I liked your wall script demo because i need it on may thesis.
Hi Anthon,
Subscribers database has been updated…
Use this link to download – http://w3lessons.info/demo/facebook-timeline-demo-2
Thanks
Karthikeyan k
Hi Anthon,
Subscribers database has been updated…
Use this link to download – http://itzurkarthi.com/demo/facebook-timeline-demo-2
Thanks
Karthikeyan k
Are you saying function parse_smileys is not working?
Hi Karthikeyan K,
I liked your wall script demo it is very simple, It is good for the any social wall