Código PHP:
$s=$_REQUEST["search"];
$sql="select *from Personas where Nombre ='$s'";
$rs=mysql_query($sql,$db);
if($fila=mysql_fetch_array($rs)){?>
<table border='1'>
<tr>
<td width="58">Nombre</td><td width="167"><input type="text" value= <?php echo $fila["Nombre"] ?>></td>
</tr>
<tr>
<td>Direccion</td><td><input type="text" value= <?php echo $fila["Direccion"] ?>></td>
</tr>
<tr>
<td>Mail</td><td><input type="text" value= <?php echo $fila["Mail"] ?>></td>
</tr>
<tr>
<td>Telefono</td><td><input type="text" value= <?php echo $fila["Telefono"] ?>></td>
</tr>
</table>