Código PHP:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<?
include("../Php/funciones.php");
echo <<<EOT
<?$usuario="AsierR";
$link=Conectar("*****");
mysql_select_db("*****",$link);
$rs=mysql_query("SELECT FECHA_REGISTRO FROM cuentas WHERE USUARIO='$usuario'",$link);
$fec=mysql_fetch_array($rs,MYSQL_BOTH);?>
<table>
<tr>
<td>Buenos dias $usuario. Ha sido registrado el dia $fec[0]</td>
</tr>
</table>
EOT;
?>
</body>
</html>
Las sentencias Sql y las sdentencias de conexion estan correctas
Gracias