Forum Moderators: open
If i had to guess, I would say no b/c the editor would have to be able to format HTML as well, since PHP is often embedded within HTML code - moreover, something like this (see below) may be difficult to figure out for the formatter - or the programmer creating the editor.
<table>
<tr>
<? ($i[0]!= '') echo "<th>" : echo "<td>"?>
<?=$i[1]?>
<? ($i[0]!= '') echo "</th>" : echo "</td>"?>
<tr>
</table>
Again, this is just a guess.