upload file in php

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
msz900
Forum Newbie
Posts: 1
Joined: Mon Oct 27, 2014 10:23 am

upload file in php

Post by msz900 »

Dear user
I write a file upload code in php, the code work's fine but it will upload the file up to 60 KB, when i try to upload more then 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...


Code: Select all

<!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

Code: Select all

<?php
include 'conn.php';
$desc=$_POST['description'];
$image=$_FILES['picture'];
$image_name=$_FILES['picture']['name'];
$placed='uploads/';
if(move_uploaded_file($_FILES['picture']['tmp_name'],$placed.$image_name))
{
    $smt=$conn->prepare("INSERT INTO images(Image_Name,Description,Placed_On)VALUES('".$image_name."','".$desc."','".$placed."')");
    $smt->execute();
    header('location:form.php');
   
}
else
{
    echo 'error on uploading file';
}
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: upload file in php

Post by requinix »

Actually stuck as in the page keeps "loading" but nothing happens? What happens if you leave it alone for a long time?
Post Reply