joaoh75 0 Denunciar post Postado Setembro 24, 2011 <script type="text/javascript"> var mygallery=new fadeSlideShow({ wrapperid: "fadeshow", //ID of blank DIV on page to house Slideshow dimensions: [450, 300], //width/height of gallery in pixels. Should reflect dimensions of largest image imagearray: [ ['/img/21.jpg', 'agenda.html', '', ''], ['../img/25.jpg', 'agenda.html', '', ''], ['../img/19.jpg', 'agenda.html', '', ''], ['../img/24.jpg', 'agenda.html', '', ''], ['../img/20.jpg', 'agenda.html', '', ''], ['../img/27.jpg', 'agenda.html', '', ''] ], displaymode: {type:'auto', pause:4000, cycles:0, wraparound:false}, persist: false, //remember last viewed slide and recall within same session? fadeduration: 450, //transition duration (milliseconds) descreveal: "always", togglerid: "fadeshowtoggler" }) </script> No codigo a cima como devo fazer para colocar uma valor dinamico do banco de dados no nome da image? Compartilhar este post Link para o post Compartilhar em outros sites
Dii 15 Denunciar post Postado Setembro 24, 2011 Ok, você está no fórum errado, mas vamos ao que interessa. Valor dinâmico do banco de dados? Está falando dessa linha? imagearray: [ ['/img/21.jpg', 'agenda.html', '', ''], ['../img/25.jpg', 'agenda.html', '', ''], ['../img/19.jpg', 'agenda.html', '', ''], ['../img/24.jpg', 'agenda.html', '', ''], ['../img/20.jpg', 'agenda.html', '', ''], ['../img/27.jpg', 'agenda.html', '', ''] ], O que você quis dizer com Valor Dinâmico do Banco de Dados? Eu não compreendi muito bem. Compartilhar este post Link para o post Compartilhar em outros sites
joaoh75 0 Denunciar post Postado Setembro 24, 2011 ola amigo, então ali nesse imagerray 21.jpg... 25.jpg quero pegar esses valores do banco de dados. o nome da imagem queria fazer ele pegar do banco Compartilhar este post Link para o post Compartilhar em outros sites
₢istiano 0 Denunciar post Postado Setembro 24, 2011 como devo fazer para colocar uma valor dinamico do banco de dados no nome da image? faça um while pegando todos os dados, ex: tabela --> fotos. na coluna fotos, voce coloca o numero da img, 21,25... imagearray: [ <?php $sql = mysql_query("SELECT * FROM tabela ORDER BY ASC"); while($f = mysql_fetch_array($sql)){ $foto = $f[fotos]; echo "['/img/".$foto.".jpg', 'agenda.html', '', ''], <br />"; } ?> ['/img/foto.jpg', 'agenda.html', '', ''] // imagem deve ser fixa.[não define no banco de dados] ], Compartilhar este post Link para o post Compartilhar em outros sites