I am trying to run the below code in w3schools try it php, but I get this error. what did I miss?
$file="https://www.w3schools.com/html/pic_trulli.jpg";
function resize_image($file, $w, $h, $crop=FALSE) {
list($width, $height) = getimagesize($file);
echo $width;
}
$w=100;
$h=100;
resize_image($file, $w, $h);
this is the error I get:
PHP Warning: getimagesize(): php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /home/j6Tv9z/prog.php on line 4 PHP Warning: getimagesize(https://www.w3schools.com/html/pic_trulli.jpg): failed to open stream: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /home/j6Tv9z/prog.php on line 4