Hi Leute!
Ich habe folgendes seltsames Problem:
Bei folgendem Code
kriege ich immer leere Arrays: Array ( ) Array ( ) Array ( )
Sobald ich aber enctype="multipart/form-data" raussschmeisse, gibts zumindest in $HTTP_POST_VARS das hidden field.
Ich brauche aber enctype="multipart/form-data" für den File-Upload.
Woran kanns liegen ? (PHP Version 4.1.2)
Vielen Dank,
Hannes.
Ich habe folgendes seltsames Problem:
Bei folgendem Code
PHP-Code:
<?
print_r($HTTP_POST_FILES);
print_r($HTTP_POST_VARS);
print_r($_FILES);
?>
<html>
<head>
<form name="form" enctype="multipart/form-data" method="POST" action="test.php">
<input type="hidden" name="testing" value="123456789">
<input type=submit name="upload" value="Upload">
</form>
</body>
</html>
Sobald ich aber enctype="multipart/form-data" raussschmeisse, gibts zumindest in $HTTP_POST_VARS das hidden field.
Ich brauche aber enctype="multipart/form-data" für den File-Upload.
Woran kanns liegen ? (PHP Version 4.1.2)
Vielen Dank,
Hannes.
Kommentar