lo he arreglado,parecia una tonteria peor dejandolo asi ha funcionado :
Código PHP:
Ver original<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!--<link href="style.css" rel="stylesheet" type="text/css">-->
<title>ESTADO EDICION DE INMUEBLE</title>
</head>
<body >
<?php
$txt= $_POST[comentario];
$comen= $txt;
$sql="
UPDATE inmueble
SET `direccion`= '$_POST[direccion]',
`provincia`= '$_POST[provinciaList]',
`poblacion`= '$_POST[localidadList]',
`habitaciones`= '$_POST[habitaciones]',
`superficie`= '$_POST[superficie]',
`banyos`= '$_POST[banyos]',
`precio`= '$precio',
`tipo`= '$_POST[tipo]',
`estado`= '$_POST[estado]',
`comentario`= '$txt'
WHERE referencia='$_POST[referencia]'
";
{
}
PD, el preg replace no me lo hacia bien :(!