\n"; } $result = mysql_query( $sql ); if ( !$result ) die( mysql_error() ); return( $result ); } function getEnumValues( $table, $column ) { $enum_values = array(); $result = mysql_query( "DESCRIBE $table $column" ); if ( $result ) { $row = mysql_fetch_assoc($result); preg_match_all( "/'([^']+)'/", $row['Type'], $enum_matches ); $enum_values = $enum_matches[1]; } else { echo mysql_error(); } return $enum_values; } function getSetValues( $table, $column ) { return( getEnumValues( $table, $column ) ); } ?>