Jump to content

form <selects> generated from MySQL ENUM values


sjmiller

Recommended Posts

Is there any way to generate a select form with options deriving off of the values of an ENUM field in MySQL?  I'd like to cut out the middle man of having to manually go in and type out the select options so that they match the values of the enum field, and if possible (long shot here) be able to easily edit the values in the ENUM via a form.  Is this a little extreme or doable?

Link to comment
https://forums.phpfreaks.com/topic/151244-form-generated-from-mysql-enum-values/
Share on other sites

You could try parsing output from SHOW COLUMNS FROM

http://dev.mysql.com/doc/refman/5.1/en/show-columns.html

 

If you foresee that the ENUM values will be changing frequently, then you should probably NOT use ENUM datatype, but some kind of lookup table.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.