|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2006-01-03 13:03 UTC] xfuture00 at hotmail dot com
Description: ------------ Well... I try to search around the solution for this problem.. no matter Advanced search in bugs.php.net or google... I found $_FILES unable to get files with space between the filename like "ab c.txt" or "my files.txt" Reproduce code: --------------- My Form: <form method="POST" enctype="multipart/form-data" action="xxx.php"; ?>" name='addfileform'> <input type="file" name="filename" size="64" maxlength="255" class="" > My PHP: $myFile = $_FILES['filename']; $source_file = $myFile['tmp_name']; $destination_file = "**some location**"; $upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY); Expected result: ---------------- I expect the upload can be successfully as the file that WITHOUT space between the file name... Actual result: -------------- the result return filename is an Undefined Index.. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 00:00:02 2025 UTC |
the var_dump($_FILES) return me this... array(0) { }