i am using html5 multiple attribute in a file field, like
<input type="file" name="image[]" multiple>
and then via php for loop i add those images, now the problem is occurring that on localhost user can upload up to 9 normal size images but on server he can upload only 2,3 images at a time so how to increase the number of images to be uploaded or size of all the images to be uploaded???
i tried php
ini_set('max_execution_time', 300);
and
set_time_limit(100);
as well but no profit.