Results 1 to 5 of 5

Thread: PHP Picture + MySQL Database

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jul 2006
    Posts
    266

    PHP Picture + MySQL Database

    I would like to know how to store a picture, say 1.jpg in MySQL. Is there any inbuild function to do this ? Please suggest me.

  2. #2
    New Member
    Join Date
    Aug 2006
    Posts
    9

    Re: PHP Picture + MySQL Database

    i use php5 pdo functions to do this

    see pdo

    i reccomend mysql5 tho for this, and u have to realise you are adding quite an overhead by storing images in DB

    heres a link as well http://codewalkers.com/tutorials/35/1.html

  3. #3
    Member
    Join Date
    Nov 2002
    Location
    Bangladesh
    Posts
    48

    Re: PHP Picture + MySQL Database

    Manual directory submission,article submission,link building services from Bangladesh. Because our overhead costs are low , we can deliver quality service at reasonable prices

  4. #4
    Junior Member
    Join Date
    May 2006
    Posts
    17

    Re: PHP Picture + MySQL Database

    Have you considered doing it the simpler way...you can put your images in a folder and simply put the path to the image in the database...also keeps the size of your db more reasonable. then just add..... <? ...<img src="<? $imagepath ?>"> ..?> ...html code to display.

  5. #5
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: PHP Picture + MySQL Database

    Please speak in English. "u" is, contrary to what appears to be popular belief, not an acceptable form of the word "you".

    You can store images in a database in BLOB format. However, it's a fairly pointless task, since you then need to output it in a form a user agent can display, which usually means writing to a temporary file. Stephan's suggestion is more reasonable, store the path to the image instead, then you avoid all this nonsense.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width