I have the following code in a php page:
<?php
$query = "
SELECT data
FROM table
WHERE param = 1
";
Since this sql is wrapped inside quotations in a php document, everything shows up a solid green (or whatever color you have set for a string's syntax highlight).
Is there a way to get sublime text 2 to properly color the sql even with it inside a php string?