when you hit the submit button, the file can be then accessed by $_FILES system global var. its actually an array.
so you can copy the file somewhere else or do whatever you want with it by accessing the: $_FILES['userFile']['tmp_name'];
where 'userFile' is the name="..." bit in your <input> tag.
regards,
Daarius...