Ответ
Андрей 22.08.2006 04:26
<script>
function copy_path(){
document.file.path.value = document.file.file.value;
}
</script>
<form action="upload.html" method="post" enctype="multipart/form-data" name="file">
<input type="hidden" name="path" value="">
<input type="file" name="file" size="50" onChange="copy_path()">
<input type="submit"></tr>
</form>
Самое простое, что пришло в голову, дальше работаешь с переменными.