Is there an extension or setting that would allow Dreamweaver to actually display "Hello World" when I type <?php echo _("Hello World"); ?>
?
Instead it just shows a "php" icon.
I mean, I usually blend HTML and PHP together, for example:
<strong>We found <?php echo $results;?> results!</strong>
That way in Dreamweaver I can easily see the general layout and static text of a page in design mode (Dreamweaver just replaces the php codes by php icons).
However, now I need to use php 'gettext' for Internationalization. for that, I'll have to do:
<strong><?php echo _("We found");?> <?php echo $results;?> ...
So now my static text becomes php code in the eyes of Dreamwever, so it doesn't display anymore. I was wondering if there was any extension, or something else, that would make my job easier.