<html>
<head>
<title>Formular</title>
<script type="text/javascript">
function go1()
{
document.a.b.click(); <!--"a" ist der form-tag Identifizierer "id" - muss für alle Funtkionen gleich sein,
<!-- da nur ein Formular existiert-->
document.a.c.value = document.a.b.value; <!--"a" dient für den Durchsuchen-Button selbst - dessen Information wird an das
<!--Textfeld namens "c" übergeben zur Ansicht des Pfades-->
}
</script>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="middle" align="center">
<form method="post" action="upload.php" id="a" name="a" enctype="multipart/form-data";>
<input type="file" id="b" style="display:none" name="BLA"> <!--FUNKTION DIE DEN EXPLORER AUFRUFT-->
<input id="c" name="datei"> <!--TEXTFELD INDEM DER PFAD ANGEZEIGT WIRD-->
<input type="button" onclick="go1();" value="DATEI"> <!--BUTTON-->
<input type="submit" value="UPLOAD">
</form>
</td>
</tr>
</table>
</body>
</html>