<?php
$link = "http://www.facebook.com/event.php?eid=272777922733649";
$position=strpos($link,'eid=')+4;
$ID=substr($link, $position);
$url="http://graph.facebook.com/$ID";
$homepage = file_get_contents($url);
$obj=json_decode($homepage,true);
$desc = $obj['description'];
echo "Description: " . nl2br($desc);