das php script wird wohl nicht stimmen:
Code:
<!DOCTYPE
html PUBLIC "-//
W3C//DTD
HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<
html>
<head>
<title>
blaa
</title>
<meta http-equiv="Content-Type" content="text/
html; charset=us-
ascii">
<meta http-equiv="expires" content="0">
</head>
<body bgcolor="#FFFFFF" onload="start()">
<div>
<?php
if ($_SERVER['REQUEST_METHOD']=='POST')
{
$uploaddir1 = "D:/temp/".time ()."-".$_FILES['Ufile']['name'];
if ( move_uploaded_file($_FILES['Ufile']['tmp_name'], $uploaddir1 . $_FILES['Ufile']['name']))
{
echo "Danke - Datei ist hier eingegangen";
} else
{
echo "Datei konnte nicht gespeichert werden.";
}
}
?>
<form name="form1" method="post" enctype="multipart/form-data" action="" id="form1">
Dateiname: <input type="file" name="Ufile" value=""> <input name="lade" type="submit" class="form6">
</form>
</div>
</body>
</
html>
ich nutz da diesen code für
der trick liegt bei der move_uploaded_file funktion.