What if you wanted to display Column Names that began with letters A-F?
$query = "select * from TABLENAME where COLUMNAME like 'a%', 'b%',..., 'f%'";
$result = mysql_query($query);
Would that do the trick?
If so would it sort the records A through F or would it output them in the order they were listed in the db?