Zhou your right it's not a good idea to provide a server wtih the location of file on your hard disk. I simply want to find out what images goes with the html file already uploaded and "fill in the blanks" rather than have the user have to browse for each file individually.
I recently tested that I can get the file path with javascript an onsubmit fuction like this:
Code:
<script>
function checkfile()
{
var filename;
filename = document.formname.test.value;
alert (filename);
}
</script>
from there it's just a matter of parsing off the file name.
Let me be clear I have no desire to do anything other than "guide" the user to files needed for the html file to display correctly. As a matter of fact I will make sure the path I am after will be out in the open for the user to see.
Thanks