ERKOM adlı üyeden alıntı: mesajı görüntüle
arkadaşlar herhangi bir resim url sini tarayıcıda yazdımak istiyorum ama olmuyor..yardımcı olursanız sevinirim..kodum şöyle:
 
<?php
  
  $picture = file_get_contents("https://kuaza.com/wp-content/uploads/2015/05/108641_anlamli_ask_resimler_3-696x522.jpg");
header('Content-type: image/jpeg');
echo $picture;

?>
hedef url adresindeki resmi göstermek istiyorsanız
$url = "https://kuaza.com/wp-content/uploads/2015/05/108641_anlamli_ask_resimler_3-696x522.jpg";
<img src="<?php echo $url; ?>">