• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Help with PHP scripting?

nag

New Member
Please help me?

----------------
My second question is simple that just tell me how to search for
records in the table with multiple criteria like

SELECT * FROM tablename WHERE name=this AND age=this ,is it true????:confused:
 
Last edited:
No one knows how to store images in mySQL?

Ok nobody here knows how to store images in mySQL and then retrieve them through PHP:confused: :confused: :confused:
 
first of all, yes, you just add and to set another operator... like in your example:

SELECT * FROM tablename WHERE name='this' AND age='this'

second, mysql isn´t really designed to handle images, so you can´t...
 
> second, mysql isn´t really designed to handle images, so you
> can´t...

You can... but why? MySQL has a "BLOB" column type, that you can store binary data in. You would retrieve the binary data the same way you would anything else from the database.
 
bout the blob, u have to specify when u create the field that it is a blob or else it will try to store it as a ASCII file.
 
Back
Top