Hi , I'm tryign to upload files to my serve r from the client .
This code works fine for smaller files(txt and gifs)
<?php
$uploaddir = 'c:/inetpub/wwwroot/NVP/uploads/';
$uploadfile = $uploaddir. $_FILES['userfile']['name'];
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile))
{
print "File uploaded. ";
}
else {
print "Problem in upload";
}
?>
My problem is that for larger gif files , it returns false . Is there any place i can increase the max size that the client can upload ?
Thanks,