Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to upload .jpg, .jpeg, .bmp and .png file type images. Also fill the Database filled with its name. And I want to display the uploaded images on the users screen.

share|improve this question

closed as not a real question by Mike Purcell, brian d foy, Marek Grzenkowicz, Anoop Vaidya, goettschkes Jan 9 at 10:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Here is a code for uploading the images to the file

$allowedExts = array("jpg", "jpeg", "gif", "png");
$extension = end(explode(".", $_FILES["file"]["name"]));
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 2000000)
&& in_array($extension, $allowedExts))
  {
  if ($_FILES["file"]["error"] > 0)
    {
    echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
    }
  else
    {
    echo "Upload: " . $_FILES["file"]["name"] . "<br />";
    echo "Type: " . $_FILES["file"]["type"] . "<br />";
    echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
    echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";
echo "<br>" ."<a href=register_set.php> Get back to registration </a> <br>";

    if (file_exists("upload/" . $_FILES["file"]["name"]))
      {
      echo $_FILES["file"]["name"] . " already exists. ";
      }
    else
     {
      move_uploaded_file($_FILES["file"]["tmp_name"],
      "upload/" . $_FILES["file"]["name"]);
      echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
      }
    }
  }
else
  {
  echo "Invalid file";
  }

To store file name to db, just use post.

$filename = $_POST['filename'];

while showing the image just add your path in the img...lik this

$img = 'upload/'.$filename;
<img src="'.$img.'" width="100" height="100" >
share|improve this answer
in this program, corresponding extension will store in DB ? – Benila Anoop Jan 9 at 5:09
Ya the extension wil also be stored in db... – Php Geek Jan 9 at 5:10
@Anoop is it working? – Php Geek Jan 9 at 5:44

Not the answer you're looking for? Browse other questions tagged or ask your own question.