Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/12/2004, 13:26
mon
 
Fecha de Ingreso: febrero-2003
Mensajes: 506
Antigüedad: 21 años, 2 meses
Puntos: 0
Alguien sabe hacer este mini album en PHP?

Ya lo puse en PHP pero nadie respondió y pensé que a lo mejor hay alguien por aquí que sepa decirme algo, quisiera saber si hay forma de hacer algo igual que el mini album de imagenes que sale en las FAQS de este apartado, en concreto esto:

Código:
<script language="JavaScript">
<!--
var viewPix = new Array("http://www.tusitio.com/tuimagen.png","http://www.tusitio.com/tuimagen2.png","http://www.tusitio.com/tuimagen3.png")

var thisImage = 0 

function doPast() {
if (document.images && thisImage > 0) {
thisImage--
document.myShow.src=viewPix[thisImage]
}
}
function doAfter() {
if (document.images && thisImage < 3) {
thisImage++
document.myShow.src=viewPix[thisImage]
}
}
// -->
</script>
<div align="center"><img name="myShow" src="http://www.tusitio.com/tuimagen.png" width="468" height="60"><br><a href="javascript:doPast()">Anterior</a>     <a href="javascript:doAfter()">Siguiente</a></div>
Si hay alguien que pueda hecharme una mano se lo agradecería muchísimo, salu2

Última edición por tunait; 30/12/2004 a las 14:10