I have a php web page with 15 fields. The user will use it to upload images. I tested this by uploading 15 jpg images, each about 2 M, without any problems. On the day I
The upload limits are set through php ini. You can try get them like so:
$post_max_size = ini_get('post_max_size'); $upload_max_filesize = ini_get('upload_max_filesize');