Maximum File Size

I always forget how to fix the maximum file size for uploading on drupal. Simply add this:

  php_value  upload_max_filesize  75M
  php_value  post_max_size  75M
  php_value  memory_limit  32M

I put this in each one of the if statement sections since I have no idea which one my server is running (although I assume it's the one) - see below.

# PHP 4, Apache 1.
<IfModule mod_php4.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
</IfModule>