Aquí lo que tengo (lo poco que tengo ):
Código PHP:
<?php
# Busco los usuarios
$sql = "SELECT * FROM usuarios ";
$res = mysql_query($sql, $link) or die(mysql_error());
?>
<table width="800" border="0" align="center" cellpadding="1" cellspacing="1">
<tr>
<td width="53" align="center" valign="top"><strong>ID</strong></td>
<td width="426" align="center" valign="top"><strong>nombre</strong></td>
<td width="321" align="center" valign="top"><strong>apellidos</strong></td>
</tr>
<?php
$i = 0;
while($row = mysql_fetch_assoc($res)){ ?>
<tr>
<td align="center" valign="top"><?php echo $row['ID']?></td>
<td align="center" valign="top"><?php echo $row['nombre']?></td>
<td align="center" valign="top"><?php echo $row['apellidos']?></td>
</tr>
<?php $i++;
} ?>
</table>
¿Alguien me puede explicar como se suelen recoger estos tipos de datos? Cualquier cosa me vale, ya sea teoría, enlace, ejemplo....
Espero que alguien me ayude porque no tengo ni idea de como enfocarlo. Muchas gracias!!