Facebook Apps – Get User Friends Data
Lets see how to get User’s Friend data. Create 2 files: index.php friends_data.php Please note that this is only the code, you need to include Facebook Api scripts and Apps information. In index.php, use this code [php]$colnams=" uid, email, proxied_email, username, name, first_name, last_name, sex, birthday, birthday_date, profile_url "; $pgno="1"; $defaultresultrownum="5"; $lowerlimit=($pgno-1)*$defaultresultrownum; $upperlimit=$defaultresultrownum; $searchtbnam="user"; $wherequery … Read more