Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/11/2007, 14:41
SidV
 
Fecha de Ingreso: mayo-2004
Ubicación: CABA - Argentina
Mensajes: 278
Antigüedad: 19 años, 11 meses
Puntos: 3
Popup con info desde base de datos

Buenas gente, lo que queremos lograr es que al hacer click sobre una "imagen", aparezca un popup (otra ventanita), pasando unos detalles de tal imagen, y esos detalles vienen desde una base de datos.

El script que usamos es este:
Código:
// FUNCION ABRIR VENTANA-POPUP
//------------------------------------------------------

function Abrir_ventana($pagina) {
$opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=420, height=300, top=85, left=140";
window.open($pagina,"",$opciones);
}


//LO QUE HAGO ES QUE AL PASAR EL MOUSE POR LA IMAGEN Y HACIENDO 'CLICK' EN ELLA, APARECE EL DETALLE DEL DEPORTE.
// LO QUE QUIERO ES QUE APAREZCA EL DETALLE EN UN POPUP, Y NO ME SALE
//---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

if ($opcion <> 0) {
$q = 'SELECT * FROM deporte WHERE categoria_deporte=' . $opcion;
}else
$q = 'SELECT * FROM deporte';
$r = mysql_query($q);

$fila = 1;
while ( $row = mysql_fetch_array($r) ){
$lnkmodificar_deporte = 'detalle_deporte.php?id_deporte=' . $row['id_deporte'];
if ($fila % 2 != 0)
{
$color_fila = "#98B8D8"; // IMPAR
}
else
{
$color_fila = "#7295DC"; // PAR
}
echo '<tr bgcolor=' . $color_fila . '>';
$bd = new Bd;
$bd->AbrirBd("iccmdp_iic");
$array_foto = $bd->consultar_foto($row['id_deporte']);
$nombre_foto = $array_foto['nombre_nuevo'];

//ACA COLOCO LA FOTO, Y CREO QUE DEBERIA IR EL POPUP

echo '<td><a href=' . $lnkmodificar_deporte . '>' . '<img src="' . 'img_deporte/' . $nombre_foto .'" width="50" height="50" </a></td>';
Pero por supuesto que no esta funcionando bien...
Algun error que uds vean?
Sugerencia?

Muchas gracias por su ayuda.
__________________
ReC Blog =)