http://qs321.pair.com?node_id=190558


in reply to Getting Values from a MySql ENUM Field

I found this in the MySQL documention:
"If you want to get all possible values for an ENUM column, you should use: SHOW COLUMNS FROM table_name LIKE enum_column_name and parse the ENUM definition in the second column."

I have used something like this in the past:
A query like the one above will give you a string that has all the values in it. You can then split this string on commas into an array. You can then iterate the array and strip out the extra junk.

It's kind of a nasty solution but it will work. I leave the details of how to accomplish this for your 'Fun Time'.

mr greywolf