Hello,
Wondering how to check if a JPG image exists on a remote server. Any ideas?
Any coding examples are appreciated!
Thanks in advance.
$fp = @fopen('http://www.website.com/image.jpg', 'r'); if ($fp) { echo 'image found'; } else { echo 'no image found'; }