Hi to all,
I am created a Search Engine for the maps, Its working properly, but the problem is that...during uploading the map details to the database...It is not uploading the images which have a size more than 2mb...Please help me this...I struck in that...
My code
I am created a Search Engine for the maps, Its working properly, but the problem is that...during uploading the map details to the database...It is not uploading the images which have a size more than 2mb...Please help me this...I struck in that...
My code
Code:
if ($Scale == "Million")
{
{
if (file_exists("Million/" . $_FILES["photo"]["name"]))
{
$Myerrors[$j++] = $_FILES["photo"]["name"] . " already exists. \n";
}
else
{
$photo = $_FILES['photo']['name'];
move_uploaded_file($_FILES["photo"]["tmp_name"],"Million/".$_FILES["photo"]["name"]);
//chmod("Million/".$_FILES["photo"]["name"], 0775);
}
}
}
Comment