What is Facebook Subscribers Button

Facebook launched a feature Facebook Subscribers where users on Facebook can now read your public updates. Till now a user have an option to show his news feeds and updates (on his wall)  to everyone, friends or to limited friends. But no option where user’s feeds can be subscribed by non-friends users i.e. seen on … Read more

Facebook Friend Lists Getting Smarter

Facebook friend lists are getting smarter day by day. Earlier from the basic friends categories (in built) to custom build (by you) friends lists, now more option have come in after the cool circles of Google Plus. Recently, a new Friend section Friends not on a list has been added and it does help you categorize … Read more

Google Browser Size

Google Browser Size is a web tool (still in labs) available at: http://browsersize.googlelabs.com/. It is a visualization of browser window sizes for people who visit Google. For example, the “90%” contour means that 90% of people visiting Google have their browser window open to at least this size or larger. This is useful for ensuring that important … Read more

Download and Install Free PHP Scripts

PHP is one of the most popular web languages to develop websites. All kinds of websites can be created using PHP. Daily new developers are joining the PHP community and learning concepts of PHP. There are various PHP scripts support forums and basic codes sites available which have basic PHP scripts. These basic PHP scripts … Read more

Facebook Apps – Get User’s Friendlists

For your apps see User Friendlists and names. Use these 2 files: index.php lists_data.php For index.php, [php]<?php $colnams=" flid, name "; $pgno="1"; $defaultresultrownum="5"; $lowerlimit=($pgno-1)*$defaultresultrownum; $upperlimit=$defaultresultrownum; $searchtbnam="friendlist"; $wherequery = "WHERE owner=’$fbuid’"; //$wherequery = ""; $resultsort="name"; $resultsortorder="asc"; $orderby="ORDER BY $resultsort $resultsortorder"; //$limit="LIMIT $lowerlimit,$upperlimit"; $fql    =  "SELECT $colnams FROM $searchtbnam $wherequery $orderby $limit"; $param  =   array( ‘method’     => … Read more