IsabelM lo intenté con lo que dice el artículo pero no me funcionó.
Es decir, dejé este código:
Código:
<?php
Header("content-type: application/x-javascript");
?>
var fadeimages_home=new Array()
<?php
include ("conexion.php");
$conexion = mysql_connect ($host, $user, $pass);
mysql_select_db ($base, $conexion);
$sql="SELECT * from rotax_fotos
order by id desc";
$result = mysql_query($sql, $conexion);
while ($row=mysql_fetch_array($result))
{
$id=$row['foto'];
if ($i=="") {$i="0";} else {$i=$i+1;}
?> fadeimages_home[<?php echo $i;?>]=["fotos/<?php echo $foto; ?>", "", ""]<?php
}
?>
Dentro del archivo slideshow.js.php pero no funcionó... ¿alguna sugerencia?