Access MySQL field's Comments with PHP -
when creating field in mysql table, there's 'comments' box fill out. how can access data in 'comments' box php?
poke around information_schema
.
select table_comment information_schema.tables table_schema = 'myschema' , table_name = 'mytable'
Comments
Post a Comment