Ahora estas usando un foreach(), el tema pasa por saber como estas recuperando los valores de tu base de datos
si se aplicase a un simple array con los nombres de las imágenes sería asi
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="js/simplegallery.js"></script>
<?php
$array = array('A.jpg', 'B.jpg', 'C.jpg', 'D.jpg');
$total = count($array);
$i = 1;
?>
<script type="text/javascript"> //<![CDATA[
/* script */
/// inicio de la script
imagearray: [
<?php
foreach ($array as $valor) {
if ($i < $total){
echo "[\"$valor\", \"url\", \"_new\", \"descripcion\"],\n";
}else{
echo "[\"$valor\", \"url\", \"_new\", \"descripcion\"]\n";
}
$i++;
}
?>
],
/// el resto de la script
//]]>
Saludos