Thanks Devinemike,
I created a file called maxini.php that looks like this:
<?php
ini_set('max_execution_time', '1200');
ini_set('memory_limit', '10M');
ini_set('post_max_size', '10M');
ini_set('upload_max_filesize', '10M');
?>
And the on the top of the pages with the upload script I use this:
include ("maxini.php");
But it doesnt work.
Right above that include line is an include for my db which works but for some reason if I try to upload a file bigger than 2MB it says that there was not a file chosen. If I use a smaller mp3 it works fine. Any suggestions?
I should add that the form action for the submit page is not SELF, it goes to a different page which carries out the commands. I have the include on top of both pages but no luck.
Thanks again.