Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear user
I write a file upload code in php, the code work's fine but it will upload the file 50kb to 60kb, when i try to upload more then 50kb to 60 kb file then the page stuck on loading.
The problem is why it is not uploading more then 60kb file? is there any fault in my code please check it out..

My form.php code is...


HTML
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" href="css/bootstrap.css"/>
    <link rel="stylesheet" href="css/bootstrap.min.css"/>
</head>
<body>
<div class="col-md-6">


<form action="upload.php" method="post" enctype="multipart/form-data">
    <label for="">Item</label><br />
   <input type="file" name="picture" class="form-control"><br />
    
    <label for="">Description</label><br />
    <textarea name="description" id="" placeholder="Enter Item Description" class="form-control"  cols="50" rows="20"></textarea><br />

    <input type="submit" name="submit" value="Upload" class="btn btn-success">
</form>
</div>
<script src="js/bootstrap.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-2.1.1.min.js"></script>
</body>
</html>


my upload.php code is



include 'conn.php';<br />
$desc=$_POST['description'];<br />
$image=$_FILES['picture'];<br />
$image_name=$_FILES['picture']['name'];<br />
$placed='uploads/';<br />
if(move_uploaded_file($_FILES['picture']['tmp_name'],$placed.$image_name))<br />
{<br />
    $smt=$conn->prepare("INSERT INTO images(Image_Name,Description,Placed_On)VALUES('".$image_name."','".$desc."','".$placed."')");<br />
    $smt->execute();<br />
    header('location:form.php');<br />
   <br />
}<br />
else<br />
{<br />
    echo 'error on uploading file';<br />
}<br />
?>


Thanks..
Posted
Updated 24-Oct-14 7:59am
v2
Comments
Peter Leow 24-Oct-14 22:24pm    
Look into the "upload_max_filesize" and "post_max_size" in your php.ini.

 
Share this answer
 
Comments
msz900 25-Oct-14 9:23am    
still same issue...
The error is in my editor... PHP Strome
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900