Uploading and retriving image from mysql database

user3267302

I've got a small problem. I'm trying to save image, and retrive it from a database table. I've got a table with BLOB column, where images are saved.

Here is the script:

INSERT INTO male_users (image) VALUES ('$image')

And everything works fine, image is saved in database. But then i try to retrive it by this code:

echo " Image: <img src='" . $row["image"]. "'  />"

But image is not displaying there is only an image name, for example: "DSC0123.jpg", and thats all.

Thanks for help in advance! Best regards

Marcos Casagrande

It's not best practice to store an image in a database, as the database will get very big, and slow. It's better if you just store the path to the image file in the server.

You can upload images and save them in your server very easily with PHP. Since it's out of the scope of this question I'll leave you some tutorials:

https://davidwalsh.name/basic-file-uploading-php http://www.w3schools.com/php/php_file_upload.asp

And to answer your actual question, you're not saving the image, but the image name, you should use $_FILE and not $_POST when we're dealing with file uploads in PHP.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

retriving image from from database through mysqli using php is not working

From Dev

Image not uploading to MySQL database in Laravel

From Dev

Searching and Retriving image from a folder

From Dev

Using func while retriving date from database

From Dev

uploading data from Shiny app into MySQL database

From Dev

uploading data from Shiny app into MySQL database

From Dev

Uploading an image to parse database

From Dev

Uploading image path into Database

From Dev

Uploading an image to parse database

From Dev

Uploading image to server(mysql database) using android and php

From Dev

Retriving 3 last records from database for each id

From Dev

Redirect and 'field' keyword issues when retriving objects from database

From Dev

Uploading MySQL database

From Dev

uploading pictures +picture information from php form to mysql database

From Dev

Mysql retriving the nth record

From Dev

Mysql retriving the nth record

From Dev

Uploading image and insering data into database

From Dev

Problems uploading image to MySQL database, it won't make an entry but uploads the image to server

From Dev

CakePHP: Uploading an Image directly to MySQL

From Dev

Video not uploading to mysql database.Wheather the image and audio insert at the same video file field

From Dev

Storing image into MYSQL database from iOS application

From Dev

How to get the an image from mysql database in php

From Dev

How to input image from canvas to MySql database?

From Dev

Display an image from a MySQL database using PHP

From Dev

php ,mysql image is not displaying from database

From Dev

PHP MySQL display image from database

From Dev

How to get the an image from mysql database in php

From Dev

Display an image from a MySQL database using PHP

From Dev

How to show image to datagridview from mysql database

Related Related

  1. 1

    retriving image from from database through mysqli using php is not working

  2. 2

    Image not uploading to MySQL database in Laravel

  3. 3

    Searching and Retriving image from a folder

  4. 4

    Using func while retriving date from database

  5. 5

    uploading data from Shiny app into MySQL database

  6. 6

    uploading data from Shiny app into MySQL database

  7. 7

    Uploading an image to parse database

  8. 8

    Uploading image path into Database

  9. 9

    Uploading an image to parse database

  10. 10

    Uploading image to server(mysql database) using android and php

  11. 11

    Retriving 3 last records from database for each id

  12. 12

    Redirect and 'field' keyword issues when retriving objects from database

  13. 13

    Uploading MySQL database

  14. 14

    uploading pictures +picture information from php form to mysql database

  15. 15

    Mysql retriving the nth record

  16. 16

    Mysql retriving the nth record

  17. 17

    Uploading image and insering data into database

  18. 18

    Problems uploading image to MySQL database, it won't make an entry but uploads the image to server

  19. 19

    CakePHP: Uploading an Image directly to MySQL

  20. 20

    Video not uploading to mysql database.Wheather the image and audio insert at the same video file field

  21. 21

    Storing image into MYSQL database from iOS application

  22. 22

    How to get the an image from mysql database in php

  23. 23

    How to input image from canvas to MySql database?

  24. 24

    Display an image from a MySQL database using PHP

  25. 25

    php ,mysql image is not displaying from database

  26. 26

    PHP MySQL display image from database

  27. 27

    How to get the an image from mysql database in php

  28. 28

    Display an image from a MySQL database using PHP

  29. 29

    How to show image to datagridview from mysql database

HotTag

Archive