|    
			
				26/10/2008, 10:08
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: abril-2008 
						Mensajes: 24
					 Antigüedad: 17 años, 6 meses Puntos: 0 |  | 
  |   Añadir Tooltip a sistema de Thumbnails. 
  Hola.Tengo un actual sistema de thumbnails y me gustaria añadirle un Tooltip (viñetas).
 He probado de juntarlo de mil maneras y siempre me tira error.
 
 CODIGO TOOLTIP:
 <a href="#" onmouseover="showToolTip(event,'This is the content of the tooltip. This is the content of the tooltip.');return false" onmouseout="hideToolTip()">TEXTO TOOLTIP QUE SERIA EL TUMBNAIL</a>
 
 CODIGO THUMBNAILS:
 <?
 $imagen_G = $_PATHS['fotos_videos'].$foto_actual['link'];
 $imagen_E = $_PATHS['dir_fotos_videos'].$foto_actual['link'];
 
 if (file_exists($imagen_E)) {
 $desc = "(". $foto_actual['alt'] . ") " . $foto_actual['foto_desc'] ;
 echo "<a href=\"index.php?mod=23&id=" . $_GET['id'] ."&idf=". $foto_actual['id_foto'] ."&order_by=". $_GET['order_by'] ."&order=". $_GET['order']  ."&limit=". $_GET['limit'] ."&num=". $num ."\">";
 echo "<img class=\"foto\" src=\"".$imagen_G."\" alt=\"$desc\" title=\"$desc\" height=110 width=170>";
 // onmouseover=\"return escape(tip".$foto_actual['id_foto'].");\"
 echo "</a>";
 echo "<br />    " . $foto_actual['foto_desc'];
 /* if ($_GET['order_by']=='ranking') {
 echo "<br />    Puntuación: " . round($foto_actual['ranking']);
 echo "<br />    Votos: " . $foto_actual['votos'];
 }*/
     |