Liveview problem rendering PHP from HTML files?
I'm wondering if anyone else has seen this, or if it's a known limitation. If I open an HTML file in liveview that has links to PHP files and click on one of those links, the link will work correctly and I can view the PHP file that I've navigated to, but PHP within that file is not interpreted correctly.
If I go into livecode, I see that a statement in the original PHP file source such as:
<img src="images/son<?php echo $_GET['pg'] ?>.jpg" alt="" width="333" height="241" class="fltlft" />
is translated into:
<img src="images/son<?php echo $_GET['pg'] ?>.jpg" alt="" width="333" height="241" class="fltlft">
So the PHP brackets are being treated as character entities rather than brackets. If I open the PHP directly and view that in liveview, all is fine.
Using DW CS5 with XAMPP for PHP 5.31.
Is there any setting I can change to workaround this?
PS: Ironically, I note that the spellchecker for this page makes the same substitutions to the PHP command brackets if I run it on the post...

