Hello,

i have a form on a html page that is for uploading mp3 files. In the form there is an inputbox with the name uploadedfile.

I am having some difficulties, the below code always echos 0. Even though when i put my mouse over the mp3 file which i want to upload, it showed that it was 2.62 MB.

php Code:
  1. $filesize = $_FILES['uploadedfile']['size'];
  2. echo "Filesize: ".$filesize."<br>";