Ok, scripting code that allows a user to display images from their own hard drive on the page being displayed. As long as the file location of the image they type in contains a valid link, everything is fine. For example:
C:\image.gif
As long as image.gif is there (in the User's hard drive), everything is fine, otherwise the "red x" is displayed.
What I want to accomplish is to try and get rid of the "red x" if the file doesn't exist. When I used "file_exists()", it scans the hard drive of the HOST, and not that of the USER to see if the file exists, then returns the message based on that.
Is there any way to scan the hard drive of the USER to see if the image is located on THEIR machine instead of the host's?
Thanks in advance for all the help. =)