With the following PHP code, incorrect comment coloring occurs. Only comment tags WITHIN the SyntaxStart/SyntaxEnd tags should be colored. There currently seems to be no method of writing a syn file to correct this.
<?php
// in somefile.php
// some php here
?>
<style>
/* some css comments here
this should NOT be colored, because the comment tags are not within the <?php ?> tags
<?php
echo "this entire php block will appear as a comment, incorrectly.";
?>
*/
<script type="text/javascript"><!--
function foo() { }
//--></script><div>this line appears as a php comment... but i havent even written any php anywhere</div>