Tengo un problemilla. Estoy haciendo una pagina en action que lee datos del servidor a travez de php. Estoy haciendo una galaria de imagenes pero no se muertran. Si pongo la sirección de la imagen se ve pero no a travez de action. Se puede usar la etiqueta <img de html verdad?
el codigo:
setProperty("scroller", _visible, false);
System.useCodepage = true;
loadVarsText = new LoadVars();
//loadVarsText.load("test.txt");
loadVarsText.load("cargadatosfotos.php");
//assign a function which fires when the data is loaded:
loadVarsText.onLoad = function(success) {
for (i=0; i < this.n; i++) {
scroller.htmlText += " http://localhost/europa_ingenieria/fotos_galeria/" + this["img"+i] + "<br>";
scroller.htmlText += "<img src='http://localhost/europa_ingenieria/fotos_galeria/" + this["img"+i] + "' border='0'><br><br>";
}
};
salu2