buenas tardes a ver si me pueden ayudar con el codigo y si pueden decirme en que falla:
Código PHP:
Ver original<?php
require_once('../../../../../../Connections/conexiondatos.php');
if(mysql_num_rows($perfil)) { // Comprobamos que exista el registro con la ID ingresada $id = $row["id"];
$usuario = $row["usuario"];
$email = $row["email"];
$freg = $row["freg"];
?>
<style type="text/css">
.estilo {
background-color: #FC6;
}
.fondo {
background-color: #999;
}
</style>
</head>
<body>
<br/>
<table width="634" height="201" border="1" cellspacing="3">
<tr class="fondo">
<th width="307" height="193" scope="col"><div align="center">
<table width="248" border="1" cellspacing="3">
<tr>
<th class="estilo" scope="col"><?=$usuario?></th>
</tr>
</table>
<p> </p>
</div></th>
<th width="308" height="193" scope="col"><div align="center">
<table width="200" border="1" cellspacing="3" class="estilo">
<tr>
<th scope="col"><div align="left">fecha de ingreso:</div></th>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><div align="left"></div></td>
</tr>
<tr>
<td><div align="left"></div></td>
</tr>
</table>
</div></th>
</tr>
</table>
</body>
</html>
<?php
}else {
?>
<p>El perfil seleccionado no existe o ha sido eliminado.</p>
<?php
}
?>
// ------------------------------------------------------------------------
el cual donde quiero imprimir el nombre del usuario no sale nada