Hi All!
Just wondering if you could help me solve a problem.
I have a PHP application that allows people to upload files (jpg's) then other people can download them by clicking a weblink to openfile.php?picture_id=43.
Open file contains ;
$fp = fopen($file_path, 'r');
fpassthru($fp);
This all works fine, but I want to design a browse page where people can see all images in a certain folder.
Now this images folder is on a seperate drive (w🙂 on the server which isn't available over http and if I add an image to the page using it's local w:\ path obviously people can't see the image as they don't have a w: drive mapped to the server.
How can I show the pics over http?
Thanks
Mark