Ver Mensaje Individual
  #7 (permalink)  
Antiguo 19/07/2007, 21:45
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Problemas con PHP al cambiar servidor...

En lugar de hacer esto:
Código PHP:
$result_buscar mysql_query("select * from propiedades WHERE ID=$ID"); 
Haces esto:
Código PHP:
$ID $_GET['ID'];
$result_buscar mysql_query("select * from propiedades WHERE ID=$ID"); 
Saludos.