Pordrias tener un archivo que te procesa los datos llamado
usuarios.php Código PHP:
## Supongamos que tienes un objecto que se llama users.
$user = new users();
## Llamamos la funcion , y nos devuelve un array de resultados.
$resultado = $user->listUsers();
## Incluimos la vista.
include("vista.php");
Vista.php
Código PHP:
Ver original<body>
<table cellpadding="0" cellspacing="0" width="300">
<tbody>
<tr>
<th>Nombre</th>
</tr>
<?php foreach($resultado as $row => $field):?>
<tr>
<td><?php echo $field ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</body>