When you want to use the facebook api, the user have to be of course logged in to the site, and he also has to be "connected" to it. That is, that the user must have authorized facebook to give you some permissions over his account, like his info, publishing to his/her wall, etc.
That process is called "connecting" to facebook and it must happen once, then there is no necesity as the user has already authorized the use of his information and/or the use of his fb account.
The connection happends in facebook. It can be trough javascript. The user clicks a button and a facebook window pops up asking the user to grant the requested permissions. If the user accepts, then your app can use facebook. If he refuses, then you cannot use it. There is a callback function for each case. If you do it trough php, then you use a funtion in the php sdk to get a login url. The user clicks on it and is temporarely redirected to fb. Then, he is shown an authorization box. He can accept or refuse. When he does, he'll be redirected back to your site.