Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Erstellen einer Tabelle mit mysql, php und ajax (mit jquery)

Sie sollten einfach $value anstelle von {$value} verwenden. Sie brauchen keine weitere foreach-Schleife innerhalb der while-Schleife.

$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>';