Vous devez simplement utiliser $value au lieu de {$value}. Vous n'avez pas besoin d'une autre boucle foreach à l'intérieur de la boucle while.
$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>';