Hi, ich hab folgenden skript
Problem ist, dass das FILES array leer ist, irgendwie kommt die Datei nicht an, habs auf 4 servern getestet, nirgends geht. Weiss einer Rat ?
File upload ist an, PHP version 4.3.2
edit : mit $_FILES gehts auch nicht...
Und bei print_r steht nur Array()
PHP-Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<!-- Creation Date: <?=Date("d/m/Y")?> -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Dev-PHP 1.9.4">
<title>Upload Skript</title>
</head>
<body>
<?php
if(isset($_POST['upload']))
{
move_uploaded_file($HTTP_POST_FILES["file"]["tmp_name"], "bilder/bild999.jpg") or print_r($_FILES);
echo('Datei wurde Hochgeladen');
}
else
{
echo('<form method="post" action="upload.php">
<table width="60%" border="0" cellspacing="2" cellpadding="0" align="center">
<tr>
<td height="20">Dateiuploader</td>
</tr>
<tr>
<td>Datei auswählen :
<input type="file" name="file" enctype="multipart/form-data">
<input type="hidden" name="upload" value="upload">
</td>
</tr>
<tr>
<td>
<input type="submit" name="Button" value="hochladen">
</td>
</tr>
</table>
</form>');
}
?>
</body>
</html>
Problem ist, dass das FILES array leer ist, irgendwie kommt die Datei nicht an, habs auf 4 servern getestet, nirgends geht. Weiss einer Rat ?
File upload ist an, PHP version 4.3.2
edit : mit $_FILES gehts auch nicht...
Und bei print_r steht nur Array()
Kommentar