ID: 35883 Updated by: [EMAIL PROTECTED] Reported By: xfuture00 at hotmail dot com -Status: Open +Status: Feedback Bug Type: Filesystem function related Operating System: WINXP_PRO PHP Version: 5.1.1 New Comment:
var_dump($_FILES); will help you to see its values. Previous Comments: ------------------------------------------------------------------------ [2006-01-03 13:06:09] xfuture00 at hotmail dot com Well.. as for extra information.. my script is working well with files without SPACES between their filename... ------------------------------------------------------------------------ [2006-01-03 13:03:13] 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.. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=35883&edit=1
