0

I have a phpmyadmin setup and all is fine and well but I can't seem to get the interface to display the pictures from the database, What could be the issue ?

I've enabled the gd2 extension in php , it doesn't seem to have solved the issue

Here is an image: Image not displaying in tables

Here is a snapshot of that column's configuration Column configuration 1, Column configuration 2

Interestingly enough when I try to open the image in a new tab this comes up: Error

Is this a possible bug or I'am I just and idiot ?

James
  • 1
  • 1

2 Answers2

0

This problem is probably because you are not using the correct version of any dependency.

Try to Look for the right dependencies, but don't worry you're not an idiot.

0

There are no "pictures" in the database, only numbers, dates, and strings. Some of those "strings" may represent images or videos, but it is up to the client to interpret them as such. phpmyadmin is a generic client for fetching only numbers, dates, and strings.

PHP, as distinct from phpmyadmin, is a programming language that has plugins for talking to MySQL and for generating HTML code that could include <img ...> tags. From that, a web server and web browser can display images.

phpmyadmin is written in PHP, but now you have to write a client in PHP (or something else) to get images displayed.

Rick James
  • 2,463
  • 1
  • 6
  • 13