Quedó así... sin embargo tampoco muestra los valores
Código PHP:
Ver original<?php
include("config.php");
function RecogeDatos()
{
global $config, $msg, $error;
$db = @mysql_connect($config['mysql_host'], $config['mysql_user'], $config['mysql_pass']); if (!$db) return $error[] = 'Database: '.mysql_error(); {
$nombre = $row["Nombre"];
$rut = $row["RUT"];
$telefono1 = $row["Teléfono 1"];
$telefono2 = $row["Teléfono 2"];
$telefono3 = $row["Teléfono 3"];
$email = $row["email"];
$edad = $row["Edad"];
$sexo = $row["Sexo"];
}
if (!$res) return $error[] = 'Database: '.mysql_error(); }
?>
<html>
<head>
<title>Sistema de Seguimiento</title>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<style type="text/css" media="screen">@import url(style.css);</style>
<script language="JavaScript" src ="scripts.js"></script>
</head>
<body>
<center>
<div class="logo1"></div>
<div style="width:500px">
<form action="<?php echo $_SERVER['PHP_SELF'];?>" method="POST">
<table width="500" border="0" cellspacing="1" cellpadding="3">
<tr class="head"><th colspan="2">Ingrese el RUT</th></tr>
<tr>
<th width="191">Rut: </th>
<td width="294" align="center"><input type="text" name="rut" size="30" maxlength="100" id="rut" value="<?php echo "$rut";?>"/></td>
</tr>
<tr class="head"><th colspan="2">Datos del Usuario</th></tr>
<tr>
<th>Nombre: </th><td align="center"><input name="nombre" type="text" disabled size="30" maxlength="100" value="<?php echo RecogeDatos();?>"/></td>
</tr>
<tr>
<th>Teléfono 1: </th><td align="center"><input name="telefono1" type="text" disabled size="30" maxlength="100" value="<?php echo "$telefono1";?>"/></td>
</tr>
<tr>
<th>Teléfono 2: </th><td align="center"><input name="telefono2" type="text" disabled size="30" maxlength="100" value="<?php echo "$telefono2";?>"/></td>
</tr>
<tr>
<th>Teléfono 3: </th>
<td align="center"><input name="telefono3" type="text" disabled size="30" maxlength="100" value="<?php echo "$telefono3";?>"/></td>
</tr>
<tr>
<th>E-mail: </th><td align="center"><input name="email" type="text" disabled size="30" maxlength="100" value="<?php echo "$email";?>"/></td>
</tr>
<tr>
<th>Edad: </th><td align="center"><input name="edad" type="text" disabled size="30" maxlength="100" value="<?php echo "$edad";?>"/></td>
</tr>
<th>Sexo:</th><td align="center"><input name="sexo" type="text" disabled size="30" maxlength="100" value="<?php echo "$sexo";?>"/></td>
</table>
<input type="button" class="button2" value="Inicio" onClick="location.href='index.php';"/>
<input type="button" class="button2" value="Regresar" onClick="history.go(-1)" />
<input type="submit" name="botonbuscar" class="button2" value="Buscar"/>
</form>
</div>
</center>
</div>
<div style="width:300px"></div>
<p align="center"> </p>
</table>
</body>
</html>