How does datatables add pictures to one of the columns?

how does datatables add pictures to one of the columns?

Apr.05,2021

generally stores the address of the picture, not directly


take the Mysql database as an example: convert the picture into binary data and store it. The column for saving pictures needs to be set to data types such as BLOB, MEDIUMBLOB or LONGBLOB. Please try not to store large pictures. The recommended method is to store the picture on the file server and store the url in the database.

Menu