Try using:
$sql = "DESCRIBE Table_Name_Here Field_Name_Here";
$values = mysql_fetch_assoc(mysql_query($sql));
$values = explode(',', substr(str_replace('\'', '', $values['Type']), 4, -1));
This should set $values to an array containing each of the possible set values.