Hi, good day my fellow programmers, i need help in
making a url file uploader
in normal uploader, we use
$_POST[file][size];
to get the uploaded file size.
So i want to know what i will use to get the file size in a url uploader,
I tried
$file=("$_Post[file]");
$size= filesize('$file');
but it did not work
making a url file uploader
in normal uploader, we use
$_POST[file][size];
to get the uploaded file size.
So i want to know what i will use to get the file size in a url uploader,
I tried
$file=("$_Post[file]");
$size= filesize('$file');
but it did not work
Comment