style="cursor:pointer;" onmouseover="document.getElementById("ig1").src (this.src);
codigo que ponia en la imagen miniatura.
pero ahora los datos los recupero de una base de datos y ya no me funciona!! como le hago ahi sta el codigo
tengo el siguiente codigo
Código PHP:
$resultado2=mysql_query("select rutafotopart from fotosparticipantes where Id=$idpart and Idfotopart =5" )or die ($Sql .mysql_error()."" );
while($fila=mysql_fetch_array($resultado2)){
echo '<div class="imagengrande" >
<img src="fotospart/'.$fila[rutafotopart].'" id="ig1" />
</div>';
}
echo ' <div class="datosparticipante">
<p>
Nombre:' .$row[nombre]. '<br>
Edad:'.$row[edad].'<br>
Estatura:'.$row[estatura].'<br>
Signo:'.$row[signo].'<br>
Hobbies:'.$row[hobbies].'<br>
Profesión:'.$row[profesion].'<br>
Razon:'.$row[razon].'<br>
</p>
';
$r=mysql_query("select rutafotopart from fotosparticipantes where Id=$idpart" )or die ($Sql .mysql_error()."" );
echo '<div id="fotosminparticipantes">';
while ($f=mysql_fetch_array($r)){
echo '<div class="imgm1" >
<img src="fotospart/'.$f[rutafotopart].'" style="cursor:pointer;" onmouseover="document.getElementById("ig1").src = (this.src);" />
</div>';
}
echo '</div></div>';
}