De este modo logré q se visualice la primera imagen:
Código PHP:
foreach($banners as $ban){
$imagen="imagenes/banners/$ban->id/n0-s0.jpg";
}
?>
<script type="text/javascript">
var mygallery=new simpleGallery({
wrapperid: "simplegallery", //ID of main gallery container,
dimensions: [1280, 510], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
imagearray: [
<?php
echo "[\"$imagen\", \"\", \"\", \"\"]"
?>
],
si pongo de este modo me da error y no muestra la pantalla
Código:
<script type="text/javascript">
var mygallery=new simpleGallery({
wrapperid: "simplegallery", //ID of main gallery container,
dimensions: [1280, 510], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
imagearray: [
<?php
echo "[\"$imagen\", \"\", \"\", \"\"]",
echo "[\"$imagen\", \"\", \"\", \"\"]"
?>
],
no se como hacer el recorrido para que muestre las 5 imágenes que quiero.
Alguna idea?