<table>
<tr>
<td>Nombre</td>
<td>Apellido Paterno</td>
<td>Apellido Materno</td>
</tr>
<?php
if(isset($_GET['id'])){
$id= md5($_GET['id']);
$consulta = mysql_query("SELECT * FROM usuarios WHERE id = '$id'");
}
$q_usuarios=mysql_query("SELECT * FROM usuarios");
while($s_usuarios=mysql_fetch_row($q_usuarios)) {
?>
<tr>
<td><?php echo $s_usuarios[0]; ?></td>
<td><?php echo $s_usuarios[1]; ?></td>
<td><?php echo $s_usuarios[2]; ?></td>
</tr>
<?php }
?>
</table>
-----------el fallo indica esto___
http://prntscr.com/1mqic1