Ver Mensaje Individual
  #23 (permalink)  
Antiguo 17/09/2010, 13:45
JuanMi23
 
Fecha de Ingreso: abril-2007
Mensajes: 54
Antigüedad: 17 años, 7 meses
Puntos: 1
Respuesta: Problema update PHP

lo he arreglado,parecia una tonteria peor dejandolo asi ha funcionado :

Código PHP:
Ver original
  1. <head>
  2.  
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4.    
  5. <!--<link href="style.css" rel="stylesheet" type="text/css">-->
  6.  
  7.  
  8.  
  9.     <title>ESTADO EDICION DE INMUEBLE</title>
  10.  
  11.  
  12.     </head>
  13.  
  14.  
  15.  
  16. <body >
  17.  
  18. <?php
  19.  
  20. $txt= $_POST[comentario];
  21.  
  22. $comen= $txt;
  23. $precio= ereg_replace("[^A-Za-z0-9]", "",$_POST[precio]);
  24.  
  25.  
  26. $sql="
  27. UPDATE inmueble
  28. SET `direccion`=  '$_POST[direccion]',
  29. `provincia`= '$_POST[provinciaList]',
  30. `poblacion`= '$_POST[localidadList]',
  31. `habitaciones`= '$_POST[habitaciones]',
  32. `superficie`= '$_POST[superficie]',
  33. `banyos`= '$_POST[banyos]',
  34. `precio`= '$precio',
  35. `tipo`= '$_POST[tipo]',
  36. `estado`= '$_POST[estado]',
  37. `comentario`= '$txt'
  38. WHERE referencia='$_POST[referencia]'
  39. ";
  40.  
  41. if (!mysql_query($sql,$con))
  42.  
  43.   {
  44.  
  45.   die('Error: ' . mysql_error());
  46.  
  47.   }

PD, el preg replace no me lo hacia bien :(!