Lista de imagenes desde una base de datos Mysql

Buen día, en un Hosting tengo una carpeta con imagenes, en una tabla de una base de datos tengo la url de esas imágenes, ahora quiero que en una lista se me muestren cada una de esas imagenes, no lo he podido lograr, siempre me aparece la URL pero no la imagen, alguien me puede ayudar?

Where is this, in the app or on the server ?

En el servidor

OK, how do you return the url of an image to your app?

Have you tested the url in a computer browser (does this show the image?)

How are you trying to display the image in your app with the url that you get ?

Con un WHILE en el servidor:

while ($urlImagen = mysqli_fetch_array($resul_pioTorres)) {
$urlImagen = $urlImagen['urlImagen'];
echo ",";
}

En APP INVENTOR en Conectividad selecciono WEB

Con esa lógica me muestra las URL.

Can you please show the output of responseContent (contenidoDerespuesta)

No, me aparecen igual que en el caso anterior, las URL quetengo en la base de datos.

Set the selected url to an image component:

image

Sigo sin poder resolver, no se si algun dia lo halla hecho y me de una idea de como hacerlo desde el comienzo.

You need to do this, so that we can see what is being returned by the server. This will tell us if the problem is with the server or with the blocks in your app.