another bug/issue I have with textmate - mysql highlighing in php code works only sort of. If I write:
"SELECT * FROM `table` WHERE `column` = 'value';";
it's fine - FROM and WHERE are blue, the rest is green.. but if I write something like
"SELECT * FROM `".$table."` WHERE `".$column."` = '".$value."';";
the MySQL highlighting stops working at FROM.