If I use the following:
<input type='hidden' name='MAX_FILE_SIZE' value='300000' />")
How big of a file can I upload? Is that roughly 300kbs?
So if I need the file to be 1MB is that 1000000 approx?
300KB = 307,200 bytes 1MB = 1024KB = 1,048,576 bytes
The number is in bytes. So 300KB is 300*1024 = 307200.
For 1MB it would be 1024*1024 = 1048576
[Edit: Beaten 😛]