This may seem like a stupid question, but please bear with me.
I've seen Facebook PHP samples that work by calling https://graph.facebook.com/xxxxxx and examining the response WITHOUT including require_once the facebook.php file and WITHOUT instantiating a $facebook object.
And then I've seen other PHP samples that start by including require_once the facebook.php file and instantiating a $facebook object, and later on use this object INSTEAD of calling https://graph.facebook.com/xxxxxx.
What's the difference? Are these simply two different methods for achieving the same thing? Which is preferred?
