/ Published in: PHP
Verify if a user is a fan of a page
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $signed_request = $_REQUEST["signed_request"]; echo "No eres fans!"; } else { echo "Ya eres fans!"; } ?>