Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/01/2007, 17:06
Avatar de gerson
gerson
 
Fecha de Ingreso: febrero-2005
Ubicación: Lima
Mensajes: 481
Antigüedad: 19 años, 2 meses
Puntos: 4
Re: como puedo hacer esto

hola towi62 prueba con esto:
Código PHP:
echo "<table border = '1'>";
echo 
"<tr><td>titulo</td><td>foto</td></tr>";
while (
$row = @mysql_fetch_array($resultid)) {
echo 
'<tr><td><a href="detalles.php?id='.$row["id"].'">'.$row["titulo"]. '</a></td><td>'.$row["foto"].'</td></tr>';
}
echo 
"</table>"
Ahora en la pagina detalles.php

Código PHP:
$id $_GET['id'];
 
//consulta sql para obtener los datos 
 
$row mysql_fetch_array($resultid);
 
echo 
'<img src="fotos/' $row['nombrefoto'] . '">'