आपको केवल {$value} के बजाय $value का उपयोग करना चाहिए। जबकि लूप के अंदर आपको किसी अन्य फ़ोरैच लूप की आवश्यकता नहीं है।
$output_string = '';
$output_string .= '<table border="1">';
while($row = mysql_fetch_assoc($facebook))
{
$output_string .= '<tr>';
$output_string .= '<td>'.$row['Your table column name here'].'</td>';
$output_string .= '</tr>';
}
$output_string .= '</table>';