How can the file size limit be adjusted in the php.ini file to allow for larger file uploads?

To adjust the file size limit in the php.ini file to allow for larger file uploads, you need to modify the "upload_max_filesize" and "post_max_size" directives. You can increase these values to allow for larger file uploads. Once you've made the changes in the php.ini file, remember to restart your web server for the changes to take effect.

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

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