Hola que tal. Bienvenid@ al foro
Tienes un error al momento de consultar los dato
Código PHP:
<?php
include ("conexion.php");
$sql="select * from lista";
$res=mysql_query ($sql);
?>
<html>
<head>
<title>Documento sin título</title>
</head>
<body>
<?php
while ($reg = mysql_fetch_array ($res))
{
?>
<table width="600" border="1">
<tr>
<td><?php echo $reg["nombre"]; echo "<br>";?></td>
<td><?php echo $reg["apellido"]; echo "<br>";?></td>
<td><?php echo $reg["segundo_apellido"]; echo "<br>";?></td>
</tr>
</table>
<?php
}
?>
</body>
</html>
Saludos