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;

?>
$picture = file_get_contents("https://kuaza.com/wp-content/uploads/2015/05/108641_anlamli_ask_resimler_3-696x522.jpg");

$img = 'ornekresim.png';

file_put_contents($img, file_get_contents($picture));

echo "<img src='ornekresim.png'>";