In a php upload Form when a User chooses an image file to upload, the name of the file appears next to the Choose File button (see attachment) is it possible to grab that file name, add it to the page, and proceed with completing the Form
Well it is available through $_FILES['userfile']['name'], the following link might help you: http://php.net/manual/en/features.file-upload.post-method.php If you can post relevant code of your Script, then we can help your further.
#chrisj, I do not know what you are trying to achieve, but if you want to add the file to the page, and show it to users before submiting the form, then you probably should use FileReader (html5 api), which will allow you to catch the file on the frontend side of a page. Regards, Piotr
If you use JQuery the following command will give you the filename. The syntax fakepath is common var filename = $('input[type=file]').val().replace(/C:\\fakepath\\/i, '')