hi all,
i'm using a "file field" i need to simply get the filename and file path (local location of my hard drive) from the file selected.
can any one help?
All the best Gareth
The value of the file input type contains full path to your file (available locally), so you could use some javascript to check that, with:
document.getElementById('field_id').value
where field_id is the id attribute of your file input form element.