How can the maximum file size limit for file uploads be adjusted in the php.ini file?

To adjust the maximum file size limit for file uploads in the php.ini file, you need to locate the "upload_max_filesize" and "post_max_size" directives in the php.ini file and increase their values to the desired limit. This will allow larger files to be uploaded to your server without encountering any size restrictions.

; Maximum allowed size for uploaded files.
upload_max_filesize = 100M

; Must be greater than or equal to upload_max_filesize
post_max_size = 100M