Te refieres hacer algo como esto.
Código PHP:
Ver original$usuarios = array('Jose','Juan','Maria','Pedro');
$tabla = "<table border=1 width=\"400px\">";
$tabla .= "<thead>";
$tabla .= "<tr>";
$tabla .= "<th>Usuarios</th>";
$tabla .= "</tr>";
$tabla .= "</thead>";
$tabla .= "<tbody>";
foreach ($usuarios as $field){
$tabla .= "<tr>";
$tabla .= "<td>".$field."</td>";
$tabla .= "</tr>";
}
$tabla .= "</tbody>";
$tabla .= "</table>";
echo $tabla;
Es lo único que pude entender.
Saludos.