I am presuming you are using the facebook PHP SDK.
You will therefore be creating a facebook object:
$facebook = new Facebook(array(
'appId' => $appId,
'secret' => $appSecret,
'cookie' => $cookies,
'domain' => $domain);
$user = $facebook->getUser();
$loginUrl = $facebook->getLoginUrl($permissions);
If the above doesn't look familiar look at the facebook PHP SDK docs or take a peek on my site for a fair few examples. http://www.facebookanswers.co.uk
Anyway, once you have the object, you log the user in...
if (!$user) {
echo "<script type=\"text/javascript\">top.location.href = '$loginUrl';</script>";
exit;
} else {
Finally you can query the facebook object to get your id and other info. I have included the access token, as you will need it if you are wanting to post on a user's fb page. However, there is no point in saving the access token to your database as it expires. The id will not expire though.
$accessToken = $facebook->getAccessToken();
$me = $facebook->api('me');
$id = $me['id'];
$name = $me['name'];
}