Now that iframes are the only way to create new Facebook apps and FBML is being phased out, you need a new way to do it.
When your app URL is loaded, it is passed a signed_request POST parameter. This parameter contains the information you need. However, it is packed and encoded so it requires some manipulation to get the right info out.
- First, split the signed_request on the '.' character. The first part is the signature. The second part is the encoded_data
- Decode the encoded_data into a JSON string using the URLBase64Decode function equivalent in your server-side programming language
- The JSON object contains a node called "page". This contains a node called "liked".
- If "liked" is true, the user liked the page and you display the "liked" version of your app. If false, show the "Please like me" version of the site.
The FBML way will continue to work the way you have it live right now, but for anyone building a new Facebook app, this is the way to do.