write the function to fetch a image from mysql databases
(datatype blob).
Answer / manish painuly
A BLOB is a binary large object that can hold a variable
amount of data. The four BLOB types are TINYBLOB, BLOB,
MEDIUMBLOB, and LONGBLOB. These differ only in the maximum
length of the values they can hold. The four TEXT types are
TINYTEXT, TEXT, MEDIUMTEXT, and LONGTEXT.
BLOB columns are treated as binary strings (byte strings).
TEXT columns are treated as non-binary strings (character
strings). BLOB columns have no character set, and sorting
and comparison are based on the numeric values of the bytes
in column values. TEXT columns have a character set, and
values are sorted and compared based on the collation of the
character set.
Submitted By Manish Painuly
| Is This Answer Correct ? | 9 Yes | 9 No |
What is session cookies php?
What is the use of "enctype" attribute in a html form?
How do I clear my browser session?
What are different types of errors available in Php?
What are the advantages of object-oriented programming in php?
Tell me is it possible to submit a form with a dedicated button?
when we use ob_start() function in php then the header() and session_start() does not gives the error like header already sent,please explain in brief
How can post form values with out press submit button
Is empty check in php?
What are the 3 types of sessions?
What is the method to register a variable into a session?
What is urlencode and urldecode in php?