Este código me muestra todos los registros de una tabla <html > <head> <title>CALZADO ANDREA TODOS LOS USUARIOS</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> body { background-image: url(bg2.jpg); background-attachment: fixed; } </style> </head><body> <center> <BR><BR><BR> <B>TODOS LOS USUARIOS</B> <BR><BR><BR> //* creamos el encabezado *// <TABLE width="601" border="5" title="Productos" bgcolor="#9999CC"> <TR> <th scope="col" width="45">Usuario</Th> <th scope="col" width="72">Contraseña</Th> <th scope="col" width="77">Nombres</Th> <th scope="col" width="72">Telefono</Th> <th scope="col" width="62">Tipo De Usuario</Th> </TR> //* iniciamos el codigo php y la conexion *// <?php require("conexion.php"); mysql_connect($mysql_host, $mysql_usuario, $mysql_password) or print "Error en la Conexi&oacute;n"; mysql_select_db("$mysql_database") or print "Error en la Base de datos"; //* creamos una variable llamada consulta en la cual almacenamos la sentencia select ordenando por usuario *// $consulta = "select * from Usuarios ORDER BY usuario"; $result = mysql_query($consulta); //* crea las filas de registro segun el numero de registros existentes *// while ($fila= mysql_fetch_row($result)) { ?> //* este código php me muestra una matriz de valores desde cero hasta el numero de filas que exista *// <TR> <TD><?php echo $fila[0]?></TD> <TD> <?php echo $fila[1]?></TD> <TD> <?php echo $fila[2]?></TD> <TD> <?php echo $fila[3]?></TD> <TD> <?php echo $fila[4]?></TD> </TR> <?php } ?> </TABLE> <b><a href="index.php">Indice</a></b> </center> </body> </html>