I want to populate my dropdowns with enum possible values from a DB automatically. Is this possible in MySQL?
|
I have a codeigniter version for you. It also strips the quotes from the values.
|
|||
You would want something like:
This will give you the quoted values. MySQL always returns these enclosed in single quotes. A single quote in the value is escaped by a single quote. You can probably safely call |
||||
|
|
|
You can get the values like this:
From there you'll need to convert it into an array:
|
|||
|
|
|
You can parse the string as though it was a CSV (Comma Separated Value) string. PHP has a great build-in function called str_getcsv which converts a CSV string to an array.
This should give you something similar to the following:
This method also allows you to have single quotes in your strings (notice the use of two single quotes):
For more information on the str_getcsv function, check the PHP manual: http://uk.php.net/manual/en/function.str-getcsv.php |
|||||||
|
|
try this
gives you all the information about that column in that table; |
|||
|
|
|
I simply want to add to what jasonbar says, when querying like:
If you get the result out as an array it will look like this:
Where [n] and [text] give the same value. |
|||
|
|
|
|||
|
|