I'm working on a Facebook-integrated online game and want to do the following in PHP:
I want users to be able to 'unlock' certain features depending on the amount of friends they invited using the Multi-Friend Request API (https://developers.facebook.com/docs/reference/dialogs/requests/).
Basically I'm looking to make code similar to this working:
if($user['friendsInvited'] => 5){
echo "You invited 5 or more friends"
} else {
echo "<button onclick='showInviteDialogue()'>Invite Friends</button>"
}