That seems to be the response I am getting... So last night I sat down and wrote a function to do just that. Here is a copy of it for anyone else that is interested.
function enum_vals($table,$field)
{
global $db;
$sql="DESCRIBE ".$table;
$result = mysql_query($sql)
or exit();
while ($myrow = mysql_fetch_row($result))
{
if ($myrow[0]==$field)
{
if (substr($myrow[1],0,4) == "enum")
{
$enums = substr($myrow[1],5,-1);
//remove ''
$enums = str_replace("'","",$enums);
//remove ()
$enums = str_replace("(","",$enums);
$enums = str_replace(")","",$enums);
//turn into array
$enumarray = explode(",",$enums);
return($enumarray);
}
}
}
}