Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/12/2010, 15:53
pablOOO5
Invitado
 
Mensajes: n/a
Puntos:
Problema lightbox en php

Hola gente espero que anden todos bien. Tengo un problema con la galeria lightbox en php, es mas o menos asi, ya tengo todos los datos cargados en mi base de datos(precio, descripcion, imagenes) pero al querer querer cargar las imagenes con lihgtbox no puedo porque tengo una variable en el head que no puedo ejecutar y es
Código PHP:
  $(function() {
        $(
'#gallery a').lightBox();
    }); 
en fin le muestro el codigo completo asi nos entendemos mejor, esta sentencia o variable esta en la linea 55 y en php la quiero incluir en la linea 18.

Código HTML:
Ver original
  1. <?php
  2. include("includes/conectar.php");
  3.  
  4. if($_REQUEST[id]){
  5.     $rs =   mysql_query("SELECT * FROM 1dormitoriov WHERE id_1dormitoriov = '$_REQUEST[id]'");
  6.    
  7. while($fila = mysql_fetch_assoc($rs)){
  8.    
  9.     $imagen = $fila[id_1dormitoriov].".jpg";
  10.     $imagen1 = $fila[id_1dormitoriov].".jpg";
  11.     $imagen2 = $fila[id_1dormitoriov].".jpg";
  12.     $nombreProducto = $fila["nombre"];
  13.     $precioProducto = $fila["precio"];
  14.     $descripcionProducto = $fila["descripcion"];
  15.    $productos= $productos .'<div id="gallery">
  16.                                         <ul>
  17.                                             <li>
  18.                                                 <a href="productos/'.$imagen.'" title="Utilize a flexibilidade dos seletores da jQuery e crie um grupo de imagens como desejar. $('#gallery').lightBox();"  >
  19.                                                     <img src="photos/thumb_image1.jpg" width="72" height="72" alt="" />
  20.                                                 </a>
  21.                                             </li>
  22.                                             <li>
  23.                                                  <a href="productos1/'.$imagen1.'" >
  24.                                                     <img src="photos/thumb_image2.jpg" width="72" height="72" alt="" />
  25.                                                 </a>
  26.                                             </li>
  27.                                             <li>
  28.                                                  <a href="productos2/'.$imagen2.'" >
  29.                                                     <img src="photos/thumb_image3.jpg" width="72" height="72" alt="" />
  30.                                                 </a>
  31.                                             </li>
  32.                                            </ul>
  33. </div>
  34. ';
  35. }
  36. }
  37. ?>
  38. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  39. <html xmlns="http://www.w3.org/1999/xhtml">
  40.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  41.     <title>jQuery lightBox plugin</title>
  42.  
  43.     <link rel="stylesheet" type="text/css" href="../style-projects-jquery.css" />
  44.     <link href="css/estilo.css" rel="stylesheet" type="text/css" />    
  45.    
  46.     <!-- Arquivos utilizados pelo jQuery lightBox plugin -->
  47.     <script type="text/javascript" src="js/jquery.js"></script>
  48.     <script type="text/javascript" src="js/jquery.lightbox-0.5.js"></script>
  49.     <link rel="stylesheet" type="text/css" href="css/jquery.lightbox-0.5.css" media="screen" />
  50.     <!-- / fim dos arquivos utilizados pelo jQuery lightBox plugin -->
  51.    
  52.     <!-- Ativando o jQuery lightBox plugin -->
  53.     <script type="text/javascript">
  54.     $(function() {
  55.         $('#gallery a').lightBox();
  56.     });
  57.     </script>
  58.     <style type="text/css">
  59.     /* jQuery lightBox plugin - Gallery style */
  60.     #gallery {
  61.         background-color: #444;
  62.         padding: 10px;
  63.         width: 520px;
  64.     }
  65.     #gallery ul { list-style: none; }
  66.     #gallery ul li { display: inline; }
  67.     #gallery ul img {
  68.         border: 5px solid #3e3e3e;
  69.         border-width: 5px 5px 20px;
  70.     }
  71.     #gallery ul a:hover img {
  72.         border: 5px solid #fff;
  73.         border-width: 5px 5px 20px;
  74.         color: #fff;
  75.     }
  76.     #gallery ul a:hover { color: #fff; }
  77.     </style>
  78. </head>


Cualquier cosas que no haya quedado clara me escriben estoy aca al lado
Desde ya muchas gracias !!!!

Última edición por pablOOO5; 14/12/2010 a las 16:02