I've been using PhpED for many years now and a recent update has changed things slightly for the worse. If I remember rightly you could set a breakpoint at any location, this wouldn't necessarily mean the debugger would stop there.
Now in a recent version update your only able to set a breakpoint at a vaild PHP code location.
This is fine normally but lines like:
<td><b><?php echo $name; ?></b></font></td> |
cause problems as you have to move the php code to a new line to set a breakpoint. So it ends up like this:
<td><b><?php
echo $name; ?></b></font></td> |
Is there anyway to revert back to the "set a breakpoint anywhere" function.
Thanks
Neil Westlake