Ver Mensaje Individual
  #14 (permalink)  
Antiguo 01/07/2011, 02:51
sidneyendis
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Como crear página detalle.php???

$solucionado= forosdelweb.fbedia88 = id.Crack!!!

Muy bueno! y muy explicativo!! Solucionado al primer intento!!

Muchas gracias a todos los que habéis colaborado y en especial a ti "fbedia88" por haberte tomado tantas molestias!!

Espero que todo el mundo que le haya servido este post, vote a estos gladiadores dandoles Karma!!

Ah! no seria correcto de mi parte terminar sin dejar el código final para futuros novatos como yo:


detalles.php:

Código PHP:
<?php 
    $id_anuncio 
$_GET['id_anuncio']; 
    
$sql=mysql_query ("
                    SELECT propiedades.titulo, propiedades.referencia, propiedades.mtscuadrados, propiedades.habitaciones, 
                           propiedades.foto, propiedades.descripcion, propiedades.precio, tipoinmuebles.tipo, ciudades.nombre
                    FROM propiedades, ciudades, tipoinmuebles
                    WHERE propiedades.idciudad = ciudades.id 
                           AND propiedades.idinmueble = tipoinmuebles.id
                           AND propiedades.id = $id_anuncio
                    "
); 
    
    while (
$registro mysql_fetch_array($sql)) 
        {    
?>
                            <div id="detalles">
                              <table width="550" border="1" bordercolor="#FFFFFF">
                                <tr>
                                  <th colspan="2" scope="col"><img width="600" height="450" src="fotos/<?php echo $registro['foto']; ?>"> </th>
                                </tr>
                                <tr>
                                  <th colspan="2" scope="row">Ref.<?php echo $registro['titulo']; ?>  - <?php echo $registro['titulo']; ?></th>
                                </tr>
                                <tr> 
                                  <th colspan="2" scope="row" align="center"><div style="background-color:#FFFFFF; border:#000; color: #F90;width:100%; padding-top:4px; padding-bottom:4px;">CARACTERÍSTICAS</div></th>
                                </tr>                                
                                <tr>
                                  <th scope="row" align="left">Tipo de propiedad:</th>
                                  <td><?php echo $registro['tipo']; ?></td>
                                </tr>
                                <tr>
                                  <th scope="row" align="left">Población:</th>
                                  <td><?php echo $registro['nombre']; ?></td>
                                </tr>
                                <tr>
                                  <th scope="row"align="left" >Metros cuadrados:</th>
                                  <td><?php echo $registro['mtscuadrados']; ?> m²</td>
                                </tr>
                                <tr>
                                  <th scope="row" align="left">Dormitorios:</th>
                                  <td><?php echo $registro['habitaciones']; ?></td>
                                </tr>
                                <tr>
                                  <th colspan="2" scope="row" align="left" ><u><i>Descripción:</i></u> <blockquote><?php echo $registro['descripcion']; ?></blockquote></th>
                                </tr>
                                <tr>
                                  <th colspan="2" scope="row"><div style="background-color:#FFFFFF; color: #F90;width:100%; padding-top:4px; padding-bottom:4px;"><u><i>PRECIO:</i></u> <?php echo $registro['precio']; ?></div></th>
                                </tr>
                              </table>             
                              </div> 
<?php 

 
?>
Nuevamente Gracias!! me habéis ayudado a aprender mucho!

Un saludo muy grande!