I want to display a local image from a browser. Without wasting the time on a urination festival about "why do I want to display a local file" or "why not download it from the server", trust me that I want to display a local image.....
php sets everything up, so I have the full path and all for the image. In the form I have:
<a><img src="c:/xampp/htdocs/images/xxx.jpg" alt="NO IMAGE AVAILABLE"></a>
and all I get is "NO IMAGE AVAILABLE". I rummaged around, and found that wiki insists that the correct syntax is:
<a><img src="file:///c:/xampp/htdocs/images/xxx.jpg" alt="NO IMAGE AVAILABLE"></a>
but I get the same "NO IMAGE AVAILABLE"......
So, from a plain old, regular html file that has a form in it, HOW do I display this image?