Facebook Apps – Get User’s Friends and List
For your apps see User Friend Ids and in which Friendlist friend is. Use these 2 files: index.php friendlists_data.php For index.php, [php]<?php $colnams=" flid, uid "; $pgno="1"; $defaultresultrownum="5"; $lowerlimit=($pgno-1)*$defaultresultrownum; $upperlimit=$defaultresultrownum; $searchtbnam="friendlist_member"; $wherequery = "WHERE flid IN (SELECT flid FROM friendlist WHERE owner=’$fbuid’)"; //$wherequery = ""; $resultsort="uid"; $resultsortorder="asc"; $orderby="ORDER BY $resultsort $resultsortorder"; //$limit="LIMIT $lowerlimit,$upperlimit"; $fql = … Read more