Re: validating images in php
Here is a function which will check if a file exists on a remote server:
http://www.php.net/manual/en/functio...open.php#39948
It creates a HTTP request for the file, if the server returns 200 OK then it exists, or if it returns 404 Error then it does not exist.
You can add your own code to make it check the extension for .bmp jpg etc.
The only problem you have with using images on other servers is they could be removed/renamed/moved at any time after you have checked it with your function.
Re: validating images in php
thanks for the link, ill check it out for sure;)