S
starfoxfs
Hi zusammen,
Ich habe ein Problem mit http_post_files, und zwar wird mir
übertragen aber nicht
So schauts aus:
Array (=> ) Array (=> tvtb_WDR1_LA_9.jpg ) Array ( => )
Hoffe es hat jmd ne Idee hier noch teile des Quellcodes:
In der execute.php dann
Ich habe ein Problem mit http_post_files, und zwar wird mir
PHP:
$filename = $HTTP_POST_FILES["bild"]["name"];
PHP:
$filetype = $HTTP_POST_FILES["bild"]["type"];
$filetmp = $HTTP_POST_FILES["bild"]["tmp_name"];
So schauts aus:
Array (=> ) Array (=> tvtb_WDR1_LA_9.jpg ) Array ( => )
Hoffe es hat jmd ne Idee hier noch teile des Quellcodes:
PHP:
<form action="./execute.php?submit=true" enctype="multipart/form-data" name="formblog" id="formblog" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $size; ?>" />
<input type="file" name="bild" id="bild" size="40" maxlength="100" />
</form>
In der execute.php dann
PHP:
if ($HTTP_POST_FILES["bild"]["tmp_name"]<> "none") {
$filename = $HTTP_POST_FILES["bild"]["name"];
$filetype = $HTTP_POST_FILES["bild"]["type"];
$filetmp = $HTTP_POST_FILES["bild"]["tmp_name"];
print_r($filetype); print_r($filename); print_r($filetmp);
}
Zuletzt bearbeitet von einem Moderator: