Posted by Iced Milk Tea on 09/07/05 12:35
I am trying to program a upload system.
The following code work very fine,
$file_name = $_FILES['uploadFile'. $x]['name'];
$size = filesize($file_name);
$type = mime_content_type($file_name);
However, when I change to
$file_name = $_FILES['uploadFile'. $x]['name'];
$size = $_FILES['uploadFile'. $x]['size'];
$type = $_FILES['uploadFile'. $x]['type'];
The program fail to give me any result.
Is there any problem happan in my code?
Thanks in advance for your advice.
Navigation:
[Reply to this message]
|