Viewing Content Of Blob In phpMyAdmin

Viewed 64431

Sorry for the Noob Question, but what does the circled button mean, and how can I view the content of a blob? alt text
(source: rigel222.com)

9 Answers

There is already a handler in phpMyAdmin to show blob data For this just add "&display_blob=true" at the end of the url. Change url like below:

*****phpmyadmin/sql.php?db=database_name&table=table_name

to

*****phpmyadmin/sql.php?db=database_name&table=table_name&display_blob=true

Related