How do I retrieve the values of an ENUMeration so that I can populate a <SELECT> box?
use:
SHOW COLUMNS FROM table LIKE column
it will return a description of the column. You can use some string function in PHP to split the result into an array with which you can populate your selectbox
Jeroen