Código HTML:
http://www.twospy.com/galleriffic/example-2.html
Código PHP:
<div id ="thumbs">
<ul class ="thumbs noscript">
<li >
<a class ="thumb" name ="optionalCustomIdentifier" href ="path/to/slide" title ="your image title">
<img src ="path/to/thumbnail" alt ="your image title again for graceful degradation" />
</a>
<div class ="caption">
(Any html can go here)
</div>
</li>
... (repeat for every image in the gallery)
</ul>
</div>
, lo he realizado así
<a href="<?php echo $row['url']; ?>" rel="lightbox[galeria]" title="kk">
<img src=<?php echo $row['url']; ?> width="100" height="100" alt="" />
</a>
y mi tabla posee los campos
imagen_id nombre url
1 1[7] subidas/1[7].jpg
el problema es que no me lee la imagen desde el servidor y la muestra con una X!, y la gracia seria que mostrara todas las imagenes desde el servidor para que se paginen
Agradeceria su ayuda!!!