HI! How do i check if the users are trying to upload bigger than 2mb files? I would like to deny that and put an error message to the user who is trying to do that.
Ben böyle bir şey olduğunu biliyorum, ama ben 2mb haline 50000 ne değişmelidir?
if ($_FILES['imagefile']['size'] > 50000 )
{
die ("ERROR: Large File Size");
}