Hi, what is the best way to show mysql enum values when inserting and updating php page?
name ENUM('small', 'medium', 'large')
edited: I actually requested this. I have a database field
`color` enum('red','blue','green','white') DEFAULT NULL,
and php form
<label for="color">Colors</label><br /> <input type="text" name="color" />
How to display enum value in php form from mysql database? Please, help
source share