Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/11/2007, 13:17
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: problema con seleccionar id

Te falta en ficha.php agregar todos los datos:
Código PHP:
<?php
$id 
$_GET['id'];
$conexion mysql_connect('localhost''''');
mysql_select_db('mibasedatos');
$rst mysql_query("SELECT * FROM propiedades WHERE id = $id");
$row mysql_fetch_row$rst );

echo 
$row['foto1'];
echo 
$row['ciudad'];
// etc.
?>
Saludos.