Cheers for your reply.
I'll try to explain a little further as it is not 'getting the file path' i'm struggling with.
After the form is submitted, and lets say an error occurred (exceed file size perhaps). I store the file path in a session like so:
$SESSION['filePath'] = $FILES['file']['name'];
The user is then taken back to the form page automatically and an error box is shown.
The problem is I want to re-show this file path in the upload box again (this saves them having to reselect their file to upload).
Usually with other form elements I use something like:
<input name="price" type="text" value="
<?php if (isset($SESSION['addClassified']['data']['price'])) { echo $SESSION['addClassified']['data']['price']; }else{ echo ''; } ?>
" size="20" />
BUT when I try this on the upload object of my form, I am shown nothing...
Hope this clears things up.