I would like to know why I can not access the image and show it, every time I run the script the image is not displayed and when I open it from my host I get the following:
Error 1011 Ray ID: 2c82fb8597081629 • 2016-07-25 22:17:31 UTC
Access denied
<?php
include 'dom.php';
$hi = file_get_contents("http://www.tumangaonline.com/api/v1/subidas?itemsPerPage=50&page=2&ultimasFilter=");
$ho = json_decode($hi);
$c = 1;
foreach ($ho->data as $key => $value) {
///muestro el nombre
echo ($c++)." --> ".$value->capitulo->tomo->manga->nombre."<br>";
// no me muestra la imagen me sale como si el link estuviera roto pero si lo abro desde la web misma oficial normal ingresa....
echo "<img src='http://img1.tumangaonline.com/".$value->capitulo->tomo->manga->imageUrl."'> <br>";
//muestro el capitulo
echo "Capitulo --> ".$value->capitulo->numCapitulo."<br>";
}