Merhaba
https://www.elsebayi.com/olcule.php?.../JUTON-1-4.jpg
= den sonraki linklerimi aşağıdaki kodla otomatik olculenlendirmek istiyorum
<?php
$remote_file = 'http://www.elsebayi.com/JUTON/ty/JUTON-1-4.jpg';
$new_width = 100;
$new_height = 100;
list($width, $height) = getimagesize($remote_file);
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($remote_file);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
header('Content-Type: image/jpeg');
imagejpeg($image_p, NULL, 100);
imagedestroy($image_p);
?>
bu sekilde sayfada remote file da olmaktadır ama ben manuel = den sonra link eklemek istiyorum yardımınızı rica ederim nasıl otomatik değişken verebilirim
https://www.elsebayi.com/olcule.php?resim=http:// buaraya istediğim linki yazdığımda boyutlanmasını istiyorum